Searched refs:match_byte (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/xz/src/liblzma/lzma/ |
| H A D | lzma_encoder_optimum_normal.c | 23 uint32_t match_byte, uint32_t symbol) in get_literal_price() argument 38 match_byte <<= 1; in get_literal_price() 40 const uint32_t match_bit = match_byte & offset; in get_literal_price() 47 offset &= ~(match_byte ^ symbol); in get_literal_price() 330 const uint8_t match_byte = *(buf - coder->reps[0] - 1); in helper1() local 332 if (len_main < 2 && current_byte != match_byte in helper1() 347 match_byte, current_byte); in helper1() 356 if (match_byte == current_byte) { in helper1() 519 const uint8_t match_byte = *(buf - reps[0] - 1); in helper2() local 526 !is_literal_state(state), match_byte, current_byte); in helper2() [all …]
|
| H A D | lzma_encoder.c | 24 uint32_t match_byte, uint32_t symbol) in literal_matched() argument 30 match_byte <<= 1; in literal_matched() 31 const uint32_t match_bit = match_byte & offset; in literal_matched() 38 offset &= ~(match_byte ^ symbol); in literal_matched() 64 const uint8_t match_byte = mf->buffer[ in literal() local 67 literal_matched(&coder->rc, subcoder, match_byte, cur_byte); in literal()
|
| /src/contrib/xz/src/liblzma/rangecoder/ |
| H A D | range_decoder.h | 342 #define rc_matched_literal(probs_base_var, match_byte) \ argument 344 uint32_t t_match_byte = (match_byte); \ 910 [match_byte] "+&r"(t_match_byte), \
|
| /src/sys/contrib/xz-embedded/linux/lib/xz/ |
| H A D | xz_dec_lzma2.c | 617 uint32_t match_byte; in lzma_literal() local 628 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal() 632 match_bit = match_byte & offset; in lzma_literal() 633 match_byte <<= 1; in lzma_literal()
|
| /src/usr.bin/gzip/ |
| H A D | unlz.c | 244 lz_rd_decode_matched(struct lz_range_decoder *rd, int *bm, int match_byte) in lz_rd_decode_matched() argument 249 const unsigned match_bit = (match_byte >> i) & 1; in lz_rd_decode_matched()
|