Home
last modified time | relevance | path

Searched refs:bitindex (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dshorten.c109 int bitindex; member
571 skip_bits(&s->gb, s->bitindex); in shorten_decode_frame()
770 s->bitindex = get_bits_count(&s->gb) - 8 * (get_bits_count(&s->gb) / 8); in shorten_decode_frame()
/third_party/python/Python/
Dcompile.c87 is_bit_set_in_table(uint32_t *table, int bitindex) { in is_bit_set_in_table() argument
93 uint32_t word = table[bitindex >> LOG_BITS_PER_INT]; in is_bit_set_in_table()
94 return (word >> (bitindex & MASK_LOW_LOG_BITS)) & 1; in is_bit_set_in_table()