Lines Matching defs:bytes
712 * <command byte><command number(4 octets, big endian)><bytes><NUL>
913 histload(Source *s, unsigned char *base, size_t bytes)
919 /* !bytes check as some systems (older FreeBSDs) have buggy memchr */
920 if (!bytes || (cp = memchr(base, COMMAND, bytes)) == NULL)
923 bytes -= ++cp - base;
926 if (bytes < 5 || (cp = memchr(base + 4, '\0', bytes - 4)) == NULL)
947 bytes -= ++cp - base;
965 size_t bytes;
984 bytes = (size_t)(sizenow - histfsize);
992 histload(hist_source, news, bytes);
996 bytes = 0;
998 if (!bytes)