Searched refs:match_byte (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/xz/src/liblzma/lzma/ |
| H A D | lzma_encoder_optimum_normal.c | 24 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 …]
|
| H A D | lzma_encoder.c | 25 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()
|
| /freebsd-14.2/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()
|
| /freebsd-14.2/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()
|