Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp1840 uint64_t lhsValue = LHS.U.pVal[0]; in udivrem() local
1842 Quotient = lhsValue / rhsValue; in udivrem()
1843 Remainder = lhsValue % rhsValue; in udivrem()
1905 uint64_t lhsValue = LHS.U.pVal[0]; in udivrem() local
1906 Quotient = lhsValue / RHS; in udivrem()
1907 Remainder = lhsValue % RHS; in udivrem()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp1939 uint64_t lhsValue = LHS.isSingleWord() ? LHS.VAL : LHS.pVal[0]; in udivrem() local
1941 Quotient = APInt(LHS.getBitWidth(), lhsValue / rhsValue); in udivrem()
1942 Remainder = APInt(LHS.getBitWidth(), lhsValue % rhsValue); in udivrem()