Home
last modified time | relevance | path

Searched refs:huff (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Dinftrees.c48 unsigned huff; /* Huffman code */ local
198 huff = 0; /* starting code */
236 next[(huff >> drop) + fill] = here;
241 while (huff & incr)
244 huff &= incr - 1;
245 huff += incr;
248 huff = 0;
258 if (len > root && (huff & mask) != low) {
283 low = huff & mask;
293 if (huff != 0) {
[all …]
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2.c1304 ngx_uint_t huff; in ngx_http_v2_state_field_len() local
1326 huff = *pos >> 7; in ngx_http_v2_state_field_len()
1350 huff ? "encoded" : "raw", len); in ngx_http_v2_state_field_len()
1368 alloc = (huff ? len * 8 / 5 : len) + 1; in ngx_http_v2_state_field_len()
1377 if (huff) { in ngx_http_v2_state_field_len()