Searched refs:reg_b (Results 1 – 8 of 8) sorted by relevance
/third_party/ffmpeg/libavcodec/arm/ |
D | cabac.h | 34 void *reg_b, *reg_c, *tmp; in get_cabac_inline_arm() local 90 [r_b]"=&r"(reg_b), in get_cabac_inline_arm()
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | cabac.h | 34 void *reg_a, *reg_b, *reg_c, *tmp; in get_cabac_inline_aarch64() local 85 [r_b]"=&r"(reg_b), in get_cabac_inline_aarch64()
|
/third_party/mesa3d/src/amd/compiler/tests/ |
D | test_to_hw_instr.cpp | 39 v0_hi.reg_b += 2; 40 v1_hi.reg_b += 2; 41 v0_b1.reg_b += 1; 42 v1_b1.reg_b += 1; 43 v0_b3.reg_b += 3; 44 v1_b3.reg_b += 3; 372 v0_hi.reg_b += 2; 373 v0_b1.reg_b += 1; 374 v1_hi.reg_b += 2; 680 v0_b3.reg_b += 3;
|
/third_party/mesa3d/src/amd/compiler/ |
D | aco_lower_to_hw_instr.cpp | 975 def_reg.reg_b += offset; in split_copy() 976 op_reg.reg_b += offset; in split_copy() 987 bool can_increase = def_reg.reg_b % MIN2(next, max_align) == 0 && in split_copy() 990 can_increase = op_reg.reg_b % MIN2(next, max_align) == 0; in split_copy() 1249 if (copy.bytes == 3 && (copy.def.physReg().reg_b % 4 <= 1) && in do_swap() 1250 (copy.def.physReg().reg_b % 4) == (copy.op.physReg().reg_b % 4)) { in do_swap() 1255 op.reg_b &= ~0x3; in do_swap() 1256 def.reg_b &= ~0x3; in do_swap() 1265 op.reg_b += copy.def.physReg().reg_b % 4 == 0 ? 3 : 0; in do_swap() 1266 def.reg_b += copy.def.physReg().reg_b % 4 == 0 ? 3 : 0; in do_swap() [all …]
|
D | aco_validate.cpp | 878 op.physReg().reg_b + op.bytes() > (256 + program->config->num_vgprs) * 4) || in validate_ra() 907 def.physReg().reg_b + def.bytes() > (256 + program->config->num_vgprs) * 4) || in validate_ra() 945 if (regs[reg.reg_b + i]) { in validate_ra() 948 i, tmp.id(), regs[reg.reg_b + i]); in validate_ra() 950 regs[reg.reg_b + i] = tmp.id(); in validate_ra() 963 if (regs[reg.reg_b + i]) in validate_ra() 967 tmp.id(), regs[reg.reg_b + i]); in validate_ra() 993 regs[reg.reg_b + i] = tmp.id(); in validate_ra() 1004 regs[reg.reg_b + i] = 0; in validate_ra() 1014 regs[op.physReg().reg_b + j] = 0; in validate_ra() [all …]
|
D | aco_register_allocation.cpp | 108 reg.reg_b += 4; in operator ++() 114 reg.reg_b -= 4; in operator --() 249 for (PhysReg i = start; i.reg_b < start.reg_b + num_bytes; i = PhysReg(i + 1)) { in test() 255 for (unsigned j = i.byte(); i * 4 + j < start.reg_b + num_bytes && j < 4; j++) { in test() 337 for (PhysReg i = start; i.reg_b < start.reg_b + num_bytes; i = PhysReg(i + 1)) { in fill_subdword() 341 for (unsigned j = i.byte(); i * 4 + j < start.reg_b + num_bytes && j < 4; j++) in fill_subdword() 935 res.reg_b += i; in get_reg_simple() 1022 reg.reg_b += instr->operands[i].bytes(); in get_regs_for_copies() 1281 reg.reg_b += op.bytes(); in get_reg_impl() 1332 test_reg.reg_b = reg.reg_b & ~(sdw_def_info.second - 1); in get_reg_specified() [all …]
|
D | aco_ir.h | 434 explicit constexpr PhysReg(unsigned r) : reg_b(r << 2) {} in PhysReg() 435 constexpr unsigned reg() const { return reg_b >> 2; } in reg() 436 constexpr unsigned byte() const { return reg_b & 0x3; } in byte() 438 constexpr bool operator==(PhysReg other) const { return reg_b == other.reg_b; } 439 constexpr bool operator!=(PhysReg other) const { return reg_b != other.reg_b; } 440 constexpr bool operator<(PhysReg other) const { return reg_b < other.reg_b; } 444 res.reg_b += bytes; in advance() 448 uint16_t reg_b = 0; member
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp9itxfm_16bpp.asm | 520 pmaddwd m7, m2, reg_b 528 pmaddwd m7, m1, reg_b 543 pmaddwd m1, m7, reg_b
|