Home
last modified time | relevance | path

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

/external/rust/crates/libz-sys/src/zlib-ng/arch/s390/
Ddfltcc_deflate.c351 if (count > HB_SIZE) { in append_history()
352 buf += count - HB_SIZE; in append_history()
353 count = HB_SIZE; in append_history()
355 offset = (param->ho + param->hl) % HB_SIZE; in append_history()
356 if (offset + count <= HB_SIZE) in append_history()
361 n = HB_SIZE - offset; in append_history()
366 if (n <= HB_SIZE) in append_history()
371 param->ho = (param->ho + (n - HB_SIZE)) % HB_SIZE; in append_history()
372 param->hl = HB_SIZE; in append_history()
394 if (param->ho + param->hl <= HB_SIZE) in dfltcc_deflate_get_dictionary()
[all …]
Ddfltcc_detail.h45 #define HB_SIZE (1 << HB_BITS) macro