Home
last modified time | relevance | path

Searched refs:hash_head (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Ddeflate.c323 IPos hash_head = 0; local
350 INSERT_STRING(s, n, hash_head);
352 if (hash_head) hash_head = 0; /* to make compiler happy */
1452 IPos hash_head = NIL; /* head of the hash chain */ local
1473 INSERT_STRING(s, s->strstart, hash_head);
1479 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1486 (s->strategy == Z_RLE && s->strstart - hash_head == 1)) {
1487 s->match_length = longest_match_fast (s, hash_head);
1491 s->match_length = longest_match (s, hash_head);
1492 } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
[all …]
DChangeLog698 - initialize hash_head in deflate.c
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Ddeflate.c1632 IPos hash_head; /* head of the hash chain */ local
1652 hash_head = NIL;
1654 INSERT_STRING(s, s->strstart, hash_head);
1660 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1665 s->match_length = longest_match (s, hash_head);
1685 INSERT_STRING(s, s->strstart, hash_head);
1734 IPos hash_head; /* head of hash chain */ local
1755 hash_head = NIL;
1757 INSERT_STRING(s, s->strstart, hash_head);
1765 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
[all …]
DChangeLog1315 - initialize hash_head in deflate.c