Home
last modified time | relevance | path

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

/NextBSD/contrib/xz/src/liblzma/lzma/
HDlzma_encoder_optimum_normal.c24 uint32_t match_byte, uint32_t symbol) in get_literal_price() argument
39 match_byte <<= 1; in get_literal_price()
41 const uint32_t match_bit = match_byte & offset; in get_literal_price()
48 offset &= ~(match_byte ^ symbol); in get_literal_price()
331 const uint8_t match_byte = *(buf - coder->reps[0] - 1); in helper1() local
333 if (len_main < 2 && current_byte != match_byte in helper1()
348 match_byte, current_byte); in helper1()
357 if (match_byte == current_byte) { in helper1()
520 const uint8_t match_byte = *(buf - reps[0] - 1); in helper2() local
527 !is_literal_state(state), match_byte, current_byte); in helper2()
[all …]
HDlzma_encoder.c25 uint32_t match_byte, uint32_t symbol) in literal_matched() argument
31 match_byte <<= 1; in literal_matched()
32 const uint32_t match_bit = match_byte & offset; in literal_matched()
39 offset &= ~(match_byte ^ symbol); in literal_matched()
63 const uint8_t match_byte = mf->buffer[ in literal() local
66 literal_matched(&coder->rc, subcoder, match_byte, cur_byte); in literal()
/NextBSD/sys/contrib/xz-embedded/linux/lib/xz/
HDxz_dec_lzma2.c585 uint32_t match_byte; in lzma_literal() local
596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
600 match_bit = match_byte & offset; in lzma_literal()
601 match_byte <<= 1; in lzma_literal()