Searched refs:HB_SIZE (Results 1 – 2 of 2) sorted by relevance
351 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 …]
45 #define HB_SIZE (1 << HB_BITS) macro