Home
last modified time | relevance | path

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

/external/chromium_org/third_party/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 */
1687 IPos hash_head; /* head of the hash chain */ local
1712 hash_head = NIL;
1714 INSERT_STRING(s, s->strstart, hash_head);
1720 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1725 s->match_length = longest_match (s, hash_head, clas);
1745 INSERT_STRING(s, s->strstart, hash_head);
1789 IPos hash_head; /* head of hash chain */ local
[all …]
Dmixed-source.patch346 IPos hash_head; /* head of the hash chain */
361 - s->match_length = longest_match (s, hash_head);
362 + s->match_length = longest_match (s, hash_head, clas);
376 IPos hash_head; /* head of hash chain */
397 - if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
398 - s->strstart - hash_head <= MAX_DIST(s)) {
402 + hash_head != NIL &&
404 + s->strstart - hash_head <= MAX_DIST(s)) {
409 - s->match_length = longest_match (s, hash_head);
410 + s->match_length = longest_match (s, hash_head, clas);
/external/qemu/distrib/zlib-1.2.8/
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 …]
/external/zlib/src/
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
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
Dfx_zlib_deflate.c1631 IPos hash_head; /* head of the hash chain */ in deflate_fast() local
1651 hash_head = NIL; in deflate_fast()
1653 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1659 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()
1664 s->match_length = longest_match (s, hash_head); in deflate_fast()
1684 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1733 IPos hash_head; /* head of hash chain */ in deflate_slow() local
1754 hash_head = NIL; in deflate_slow()
1756 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1764 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
[all …]
/external/blktrace/btt/
Ddevs.c68 dip = list_entry(p, struct d_info, hash_head); in __dip_find()
151 list_add_tail(&dip->hash_head, &dev_heads[DEV_HASH(device)]); in dip_alloc()
Dglobals.h131 struct list_head all_head, hash_head; member
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
Dsctputil.c5513 struct sctp_ifalist *hash_head; local
5529 hash_head = &vrf->vrf_addr_hash[(hash_of_addr & vrf->vrf_addr_hashmark)];
5530 if (hash_head == NULL) {
5541 LIST_FOREACH(sctp_ifap, hash_head, next_bucket) {