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

/freebsd-10.0-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.c394 // set to zero if match_bit didn't match.
400 const uint32_t match_bit local
403 = offset + match_bit
407 offset &= ~match_bit,
408 offset &= match_bit,
421 uint32_t match_bit; local
426 match_bit = len & offset; \
427 subcoder_index = offset + match_bit + symbol; \
429 offset &= ~match_bit, \
430 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.c40 const uint32_t match_bit = match_byte & offset; local
42 = offset + match_bit + (symbol >> 8);
/freebsd-10.0-release/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;

Completed in 118 milliseconds