Home | History | Annotate | Download | only in src

Lines Matching defs:bytes

705  * Bytes 1, 2:
709 * <command byte><command number(4 octets, big endian)><bytes><NUL>
854 histload(Source *s, unsigned char *base, size_t bytes)
860 /* !bytes check as some systems (older FreeBSDs) have buggy memchr */
861 if (!bytes || (cp = memchr(base, COMMAND, bytes)) == NULL)
864 bytes -= ++cp - base;
867 if (bytes < 5 || (cp = memchr(base + 4, '\0', bytes - 4)) == NULL)
888 bytes -= ++cp - base;
906 size_t bytes;
923 bytes = (size_t)(sizenow - histfsize);
931 histload(hist_source, news, bytes);
935 bytes = 0;
937 if (!bytes)