Searched refs:match_bit (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.c406 // set to zero if match_bit didn't match.
412 const uint32_t match_bit local
415 = offset + match_bit
419 offset &= ~match_bit,
420 offset &= match_bit,
433 uint32_t match_bit; local
438 match_bit = len & offset; \
439 subcoder_index = offset + match_bit + symbol; \
441 offset &= ~match_bit, \
442 offset &= match_bit, \
[all...]
H A Dlzma_encoder.c32 const uint32_t match_bit = match_byte & offset; local
34 = offset + match_bit + (symbol >> 8);
H A Dlzma_encoder_optimum_normal.c41 const uint32_t match_bit = match_byte & offset; local
43 = offset + match_bit + (symbol >> 8);
/freebsd-11-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c586 uint32_t match_bit; local
600 match_bit = match_byte & offset;
602 i = offset + match_bit + symbol;
606 offset &= match_bit;
609 offset &= ~match_bit;
/freebsd-11-stable/usr.bin/gzip/
H A Dunlz.c251 const unsigned match_bit = (match_byte >> i) & 1; local
253 &bm[symbol + (match_bit << 8) + 0x100]);
255 if (match_bit != bit) {

Completed in 133 milliseconds