Home | History | Annotate | Download | only in filter

Lines Matching defs:bytes

54   ssize_t	bytes;			/* Bytes in message string */
60 bytes = vsnprintf(s, sizeof(s), f, ap);
63 if (bytes <= 0)
68 bytes ++;
70 if ((size_t)bytes >= sizeof(s))
73 if (bytes > (ssize_t)(buf->end - buf->current))
83 size = (size_t)(buf->end - buf->start + 2 * bytes + 1024);
106 memcpy(buf->current, s, (size_t)bytes);
107 buf->current += bytes - 1;