Home
last modified time | relevance | path

Searched refs:prev_byte (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/xz/src/liblzma/lzma/
H A Dlzma_common.h124 #define literal_subcoder(probs, lc, lp_mask, pos, prev_byte) \ argument
126 + ((uint32_t)(prev_byte) >> (8U - (lc)))])
H A Dlzma_encoder_optimum_normal.c23 const uint32_t prev_byte, const bool match_mode, in get_literal_price() argument
28 pos, prev_byte); in get_literal_price()
/freebsd-14.2/usr.bin/gzip/
H A Dunlz.c441 const uint8_t prev_byte = lz_peek(lz, 0); in lz_decode_member() local
443 prev_byte >> (8 - LITERAL_CONTEXT_BITS); in lz_decode_member()
/freebsd-14.2/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c606 uint32_t prev_byte = dict_get(&s->dict, 0); in lzma_literal_probs() local
607 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs()
/freebsd-14.2/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c563 uint8_t prev_byte = 0; in run_delta_filter() local
574 prev_byte -= byte; in run_delta_filter()
575 rar->cstate.filtered_buf[dest_pos] = prev_byte; in run_delta_filter()