Searched refs:abs_d (Results 1 - 13 of 13) sorted by relevance
/third_party/mesa3d/src/util/ |
H A D | fast_idiv_by_const.c | 186 const uint64_t abs_d = (D < 0 ? -D : D); in util_compute_fast_sdiv_info() local 199 const uint64_t abs_test_numer = tmp - 1 - tmp % abs_d; in util_compute_fast_sdiv_info() 204 uint64_t quotient2 = initial_power_of_2 / abs_d; in util_compute_fast_sdiv_info() 205 uint64_t remainder2 = initial_power_of_2 % abs_d; in util_compute_fast_sdiv_info() 224 if (remainder2 >= abs_d) { in util_compute_fast_sdiv_info() 226 remainder2 -= abs_d; in util_compute_fast_sdiv_info() 229 /* Keep going as long as (2**exponent) / abs_d <= delta */ in util_compute_fast_sdiv_info() 230 delta = abs_d - remainder2; in util_compute_fast_sdiv_info()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_idiv_const.c | 72 uint64_t abs_d = d < 0 ? -d : d; in build_idiv() 80 } else if (util_is_power_of_two_or_zero64(abs_d)) { in build_idiv() 81 nir_ssa_def *uq = nir_ushr_imm(b, nir_iabs(b, n), util_logbase2_64(abs_d)); in build_idiv()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerMIPS32.h | 116 void abs_d(const Operand *OpFd, const Operand *OpFs);
|
H A D | IceInstMIPS32.cpp | 634 Asm->abs_d(getDest(), getSrc(0)); in emitIAS()
|
H A D | IceAssemblerMIPS32.cpp | 367 void AssemblerMIPS32::abs_d(const Operand *OpFd, const Operand *OpFs) { in abs_d() function in Ice::MIPS32::AssemblerMIPS32
|
/third_party/node/deps/v8/src/wasm/baseline/mips/ |
H A D | liftoff-assembler-mips.h | 1337 FP_UNOP(f64_abs, abs_d)
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.h | 728 void abs_d(FPURegister fd, FPURegister fs);
|
H A D | assembler-mips64.cc | 2887 void Assembler::abs_d(FPURegister fd, FPURegister fs) { in abs_d() function in v8::internal::Assembler
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.h | 668 void abs_d(FPURegister fd, FPURegister fs);
|
H A D | assembler-mips.cc | 2612 void Assembler::abs_d(FPURegister fd, FPURegister fs) { in abs_d() function in v8::internal::Assembler
|
/third_party/node/deps/v8/src/wasm/baseline/mips64/ |
H A D | liftoff-assembler-mips64.h | 1453 FP_UNOP(f64_abs, abs_d)
|
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
H A D | code-generator-mips64.cc | 1308 __ abs_d(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/mips/ |
H A D | code-generator-mips.cc | 1289 __ abs_d(dst, src); in AssembleArchInstruction()
|
Completed in 58 milliseconds