Searched refs:match_byte (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.0-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_normal.c23 uint32_t match_byte, uint32_t symbol)
38 match_byte <<= 1;
40 const uint32_t match_bit = match_byte & offset;
47 offset &= ~(match_byte ^ symbol);
337 const uint8_t match_byte = *(buf - coder->reps[0] - 1); local
339 if (len_main < 2 && current_byte != match_byte
354 match_byte, current_byte);
363 if (match_byte == current_byte) {
527 const uint8_t match_byte = *(buf - reps[0] - 1); local
534 !is_literal_state(state), match_byte, current_byt
21 get_literal_price(const lzma_coder *const coder, const uint32_t pos, const uint32_t prev_byte, const bool match_mode, uint32_t match_byte, uint32_t symbol) argument
[all...]
H A Dlzma_encoder.c25 uint32_t match_byte, uint32_t symbol)
31 match_byte <<= 1;
32 const uint32_t match_bit = match_byte & offset;
39 offset &= ~(match_byte ^ symbol);
63 const uint8_t match_byte = mf->buffer[ local
66 literal_matched(&coder->rc, subcoder, match_byte, cur_byte);
24 literal_matched(lzma_range_encoder *rc, probability *subcoder, uint32_t match_byte, uint32_t symbol) argument
/freebsd-10.0-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c585 uint32_t match_byte; local
596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
600 match_bit = match_byte & offset;
601 match_byte <<= 1;

Completed in 113 milliseconds