HomeSort by: relevance | last modified time | path
    Searched defs:hash_head (Results 1 - 3 of 3) sorted by relevancy

  /src/tests/bin/sh/
t_builtins.sh 823 hash_head() { function
  /src/common/dist/zlib/
deflate.c 1814 IPos hash_head; /* head of the hash chain */ local in function:deflate_fast
1832 * dictionary, and set hash_head to the head of the hash chain:
1834 hash_head = NIL;
1836 INSERT_STRING(s, s->strstart, hash_head);
1842 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1847 s->match_length = longest_match (s, hash_head);
1867 INSERT_STRING(s, s->strstart, hash_head);
1913 IPos hash_head; /* head of hash chain */ local in function:deflate_slow
1932 * dictionary, and set hash_head to the head of the hash chain
    [all...]
  /src/sys/net/
zlib.c 905 IPos hash_head = 0;
933 INSERT_STRING(s, n, hash_head);
935 if (hash_head) hash_head = 0; /* to make compiler happy */
1761 IPos hash_head = NIL; /* head of the hash chain */ local in function:deflate_fast
1779 * dictionary, and set hash_head to the head of the hash chain:
1782 INSERT_STRING(s, s->strstart, hash_head);
1788 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1794 s->match_length = longest_match (s, hash_head);
1855 IPos hash_head = NIL; \/* head of hash chain *\/ local in function:deflate_slow
    [all...]

Completed in 15 milliseconds