Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp1769 uint64_t lhsValue = LHS.U.pVal[0]; in udivrem() local
1771 Quotient = lhsValue / rhsValue; in udivrem()
1772 Remainder = lhsValue % rhsValue; in udivrem()
1834 uint64_t lhsValue = LHS.U.pVal[0]; in udivrem() local
1835 Quotient = lhsValue / RHS; in udivrem()
1836 Remainder = lhsValue % RHS; in udivrem()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPInt.cpp2044 uint64_t lhsValue = LHS.isSingleWord() ? LHS.VAL : LHS.pVal[0]; in udivrem() local
2046 Quotient = APInt(LHS.getBitWidth(), lhsValue / rhsValue); in udivrem()
2047 Remainder = APInt(LHS.getBitWidth(), lhsValue % rhsValue); in udivrem()
/external/llvm/lib/Support/
DAPInt.cpp1980 uint64_t lhsValue = LHS.isSingleWord() ? LHS.VAL : LHS.pVal[0]; in udivrem() local
1982 Quotient = APInt(LHS.getBitWidth(), lhsValue / rhsValue); in udivrem()
1983 Remainder = APInt(LHS.getBitWidth(), lhsValue % rhsValue); in udivrem()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp1954 uint64_t lhsValue = LHS.isSingleWord() ? LHS.VAL : LHS.pVal[0]; in udivrem() local
1956 Quotient = APInt(LHS.getBitWidth(), lhsValue / rhsValue); in udivrem()
1957 Remainder = APInt(LHS.getBitWidth(), lhsValue % rhsValue); in udivrem()