Home
last modified time | relevance | path

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

/lib/xz/
Dxz_dec_lzma2.c522 uint32_t symbol = 1; in rc_bittree() local
525 if (rc_bit(rc, &probs[symbol])) in rc_bittree()
526 symbol = (symbol << 1) + 1; in rc_bittree()
528 symbol <<= 1; in rc_bittree()
529 } while (symbol < limit); in rc_bittree()
531 return symbol; in rc_bittree()
539 uint32_t symbol = 1; in rc_bittree_reverse() local
543 if (rc_bit(rc, &probs[symbol])) { in rc_bittree_reverse()
544 symbol = (symbol << 1) + 1; in rc_bittree_reverse()
547 symbol <<= 1; in rc_bittree_reverse()
[all …]
/lib/
Ddecompress_unlzma.c174 static int INIT rc_get_bit(struct rc *rc, uint16_t *p, int *symbol) in rc_get_bit() argument
178 *symbol *= 2; in rc_get_bit()
182 *symbol = *symbol * 2 + 1; in rc_get_bit()
201 rc_bit_tree_decode(struct rc *rc, uint16_t *p, int num_levels, int *symbol) in rc_bit_tree_decode() argument
205 *symbol = 1; in rc_bit_tree_decode()
207 rc_get_bit(rc, p + *symbol, symbol); in rc_bit_tree_decode()
208 *symbol -= 1 << num_levels; in rc_bit_tree_decode()
DKconfig.kgdb87 0x0002 - allow arbitrary reads from memory and symbol lookup
DKconfig323 Drivers should declare a default value for this symbol if
330 Drivers should declare a default value for this symbol if
DKconfig.debug237 wrong interface to use). If you really need the symbol, please send a
238 mail to the linux kernel mailing list mentioning the symbol and why