Home
last modified time | relevance | path

Searched refs:add_bits (Results 1 – 3 of 3) sorted by relevance

/third_party/mesa3d/src/panfrost/bifrost/
Ddisassemble.c52 uint32_t add_bits; member
463 main_instr.add_bits = bits(words[2], 2, 32 - 13); in dump_clause()
481 main_instr.add_bits |= ((tag >> 3) & 0x7) << 17; in dump_clause()
483 instrs[idx].add_bits = bits(words[3], 0, 17) | ((tag & 0x7) << 17); in dump_clause()
493 main_instr.add_bits |= bits(words[3], 29, 32) << 17; in dump_clause()
500 … instrs[2].add_bits = bits(words[3], 0, 17) | bits(words[3], 29, 32) << 17; in dump_clause()
511 … instrs[2].add_bits = bits(words[3], 0, 17) | bits(words[3], 29, 32) << 17; in dump_clause()
513 main_instr.add_bits |= bits(words[3], 26, 29) << 17; in dump_clause()
522 … instrs[5].add_bits = bits(words[3], 0, 17) | bits(words[3], 29, 32) << 17; in dump_clause()
532 … instrs[5].add_bits = bits(words[3], 0, 17) | bits(words[3], 29, 32) << 17; in dump_clause()
[all …]
/third_party/ffmpeg/libavcodec/
Dralf.c233 VLC *code_vlc; int range, range2, add_bits; in decode_channel() local
261 add_bits = ctx->filter_bits; in decode_channel()
265 t = extend_code(gb, t, 21, add_bits); in decode_channel()
267 coeff -= 12U << add_bits; in decode_channel()
271 cmode = coeff >> add_bits; in decode_channel()
286 add_bits = av_clip((code_params / 5 - 3) / 2, 0, 10); in decode_channel()
287 if (add_bits > 9 && (code_params % 5) != 2) in decode_channel()
288 add_bits--; in decode_channel()
293 add_bits = 0; in decode_channel()
305 dst[i] = extend_code(gb, code1, range, 0) * (1U << add_bits); in decode_channel()
[all …]
Daic.c194 #define GET_CODE(val, type, add_bits) \ argument
200 if (add_bits) \
201 val = (val << add_bits) + get_bits(gb, add_bits); \