Lines Matching full:len
27 int len = strlen(strings[n]);
28 if (len > maxw)
29 maxw = len;
63 int len = strlen(src);
65 if (len >= buffLen)
66 len = buffLen-1;
68 memcpy(buff, src, len);
69 buff[len] = 0;
134 quote_bytes( const char* str, int len )
139 stralloc_add_quote_bytes( s, str, len );
148 int len = strlen(str);
149 return quote_bytes( str, len );
173 hex2int( const uint8_t* hex, int len )
176 while (len > 0) {
182 len --;
188 int2hex( uint8_t* hex, int len, int val )
191 while ( --len >= 0 )
192 *hex++ = hexchars[(val >> (len*4)) & 15];