Home
last modified time | relevance | path

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

/dragonfly/contrib/xz/src/liblzma/lzma/
HDfastpos.h123 #ifdef FULL_DISTANCES_BITS
129 if (dist < fastpos_limit(FULL_DISTANCES_BITS - 1, 0)) in get_dist_slot_2()
130 return fastpos_result(dist, FULL_DISTANCES_BITS - 1, 0); in get_dist_slot_2()
132 if (dist < fastpos_limit(FULL_DISTANCES_BITS - 1, 1)) in get_dist_slot_2()
133 return fastpos_result(dist, FULL_DISTANCES_BITS - 1, 1); in get_dist_slot_2()
135 return fastpos_result(dist, FULL_DISTANCES_BITS - 1, 2); in get_dist_slot_2()
HDlzma_common.h212 #define FULL_DISTANCES_BITS (DIST_MODEL_END / 2) macro
213 #define FULL_DISTANCES (1 << FULL_DISTANCES_BITS)