Home
last modified time | relevance | path

Searched refs:udiv (Results 1 - 25 of 64) sorted by relevance

123

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/shaders/compiled/
H A Dbuffertotexture11_vs.h60 udiv r0.z, null, v0.x, r0.x
64 udiv r0.z, null, r0.x, cb0[0].y
/third_party/mesa3d/src/util/tests/
H A Dfast_idiv_by_const_test.cpp237 udiv(uint64_t a, uint64_t b, unsigned bit_size) in udiv() function
277 EXPECT_EQ(fast_udiv_add_sat(n, m, bits), udiv(n, d, bits)); in random_udiv_add_sat_test()
294 EXPECT_EQ(fast_udiv_mul_add(n, m, bits), udiv(n, d, bits)); in random_udiv_mul_add_test()
326 EXPECT_EQ(fast_udiv_add_sat(n, m, 8), udiv(n, d, 8)); in TEST()
340 EXPECT_EQ(fast_udiv_mul_add(n, m, 8), udiv(n, d, 8)); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPInt.cpp1149 x_new = (this->udiv(x_old) + x_old).udiv(two);
1166 APInt midpoint((nextSquare - square).udiv(two));
1237 q1 = signedMin.udiv(anc); // initialize q1 = 2p/abs(nc)
1239 q2 = signedMin.udiv(ad); // initialize q2 = 2p/abs(d)
1282 q1 = signedMin.udiv(nc); // initialize q1 = 2p/nc
1284 q2 = signedMax.udiv(d); // initialize q2 = (2p-1)/d
1601 APInt APInt::udiv(const APInt &RHS) const {
1639 APInt APInt::udiv(uint64_t RHS) const {
1675 return (-(*this)).udiv(
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp1310 x_new = (this->udiv(x_old) + x_old).udiv(two); in sqrt()
1327 APInt midpoint((nextSquare - square).udiv(two)); in sqrt()
1393 q1 = signedMin.udiv(anc); // initialize q1 = 2p/abs(nc) in magic()
1395 q2 = signedMin.udiv(ad); // initialize q2 = 2p/abs(d) in magic()
1438 q1 = signedMin.udiv(nc); // initialize q1 = 2p/nc in magicu()
1440 q2 = signedMax.udiv(d); // initialize q2 = (2p-1)/d in magicu()
1802 APInt APInt::udiv(const APInt& RHS) const {
1842 return (-(*this)).udiv(-RHS);
1843 return -((-(*this)).udiv(RH
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
H A Dbinops-same-args.c7 u32 udiv(u32 a) { return a / a; } in udiv() function
/third_party/ltp/tools/sparse/sparse-src/validation/backend/
H A Darithmetic-ops.c66 static unsigned int udiv(unsigned int x, unsigned int y) in udiv() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAPSInt.h127 *this = udiv(RHS); in operator /=()
138 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false); in operator /()
H A DAPInt.h62 /// of the operation. For example, sdiv and udiv. However, because the bit
1067 APInt udiv(const APInt &RHS) const;
1068 APInt udiv(uint64_t RHS) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPInt.h70 /// of the operation. For example, sdiv and udiv. However, because the bit
893 APInt udiv(const APInt &RHS) const;
1911 inline APInt udiv(const APInt &LHS, const APInt &RHS) { return LHS.udiv(RHS); }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DConstantRange.h385 ConstantRange udiv(const ConstantRange &Other) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp245 // udiv is an expensive operation in the general case. If this ends up being in setBlockFreqAndScale()
248 BBFreq = BBFreq.udiv(OldFreq); in setBlockFreqAndScale()
H A DBlockFrequencyInfoImpl.cpp580 BlockCount = (BlockCount + EntryFreq.lshr(1)).udiv(EntryFreq); in getProfileCountFromFreq()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DConstantRange.cpp788 return udiv(Other);
1032 ConstantRange::udiv(const ConstantRange &RHS) const {
1036 APInt Lower = getUnsignedMin().udiv(RHS.getUnsignedMax());
1048 APInt Upper = getUnsignedMax().udiv(RHS_umin) + 1;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp371 return C1.udiv(C2); in ConstantFoldBinOp()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DShaderCore.hpp258 void udiv(Vector4f &dst, const Vector4f &src0, const Vector4f &src1);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp752 // Additional macros to execute binary operations udiv/sdiv/urem/srem since
789 case Instruction::UDiv: INTEGER_VECTOR_FUNCTION(udiv) break;
831 case Instruction::UDiv: R.IntVal = Src1.IntVal.udiv(Src2.IntVal); break;
2082 case Instruction::UDiv: Dest.IntVal = Op0.IntVal.udiv(Op1.IntVal); break;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
H A DLLLexer.cpp846 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv); in LexIdentifier()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp434 APInt IdxDiff = PtrDelta.udiv(Stride).zextOrSelf(IdxBitWidth); in lookThroughComplexAddresses()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceAssemblerARM32.h312 void udiv(const Operand *OpRd, const Operand *OpRn, const Operand *OpSrc1,
/third_party/vixl/test/aarch32/
H A Dtest-assembler-cond-rd-rn-rm-a32.cc79 M(udiv) \
497 #include "aarch32/traces/assembler-cond-rd-rn-rm-udiv-a32.h"
H A Dtest-assembler-cond-rd-rn-rm-t32.cc78 M(udiv) \
495 #include "aarch32/traces/assembler-cond-rd-rn-rm-udiv-t32.h"
/third_party/node/deps/v8/src/codegen/arm64/
H A Dmacro-assembler-arm64-inl.h1001 udiv(rd, rn, rm); in Udiv()
/third_party/node/deps/v8/src/codegen/arm/
H A Dassembler-arm.h512 void udiv(Register dst, Register src1, Register src2, Condition cond = al);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp802 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break; in getConstantValue()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/
H A Dassembler_arm.h538 // Moved to ARM32::AssemblerARM32::udiv()
539 void udiv(Register rd, Register rn, Register rm, Condition cond = AL);

Completed in 43 milliseconds

123