Lines Matching defs:bytes
726 * Bytes 1, 2:
730 * <command byte><command number(4 octets, big endian)><bytes><NUL>
875 histload(Source *s, unsigned char *base, size_t bytes)
881 /* !bytes check as some systems (older FreeBSDs) have buggy memchr */
882 if (!bytes || (cp = memchr(base, COMMAND, bytes)) == NULL)
885 bytes -= ++cp - base;
888 if (bytes < 5 || (cp = memchr(base + 4, '\0', bytes - 4)) == NULL)
909 bytes -= ++cp - base;
927 size_t bytes;
944 bytes = (size_t)(sizenow - histfsize);
952 histload(hist_source, news, bytes);
956 bytes = 0;
958 if (!bytes)