Home | History | Annotate | Download | only in utils

Lines Matching full:len

29         int  len = strlen(strings[n]);
30 if (len > maxw)
31 maxw = len;
63 stralloc_ready( stralloc_t* s, unsigned int len )
68 while (new_max < len) {
85 stralloc_readyplus( stralloc_t* s, unsigned int len )
87 unsigned len2 = s->n + len;
91 __FUNCTION__, len);
126 stralloc_add_bytes( stralloc_t* s, const void* from, unsigned len )
128 stralloc_readyplus( s, len );
129 memcpy( s->s + s->n, from, len );
130 s->n += len;
219 stralloc_add_quote_bytes( stralloc_t* s, const void* from, unsigned len )
222 uint8_t* end = p + len;