|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/ADT/APInt.h 1088 static void udivrem(const APInt &LHS, uint64_t RHS, APInt &Quotient,
References
lib/Support/APInt.cpp 1916 APInt::udivrem(-LHS, -RHS, Quotient, R);
1918 APInt::udivrem(-LHS, RHS, Quotient, R);
1923 APInt::udivrem(LHS, -RHS, Quotient, R);
1926 APInt::udivrem(LHS, RHS, Quotient, R);
2246 udivrem(Tmp, Radix, Tmp, Digit);
tools/clang/lib/AST/ExprConstant.cpp 8391 llvm::APInt::udivrem(OrigN, TSize, N, Remainder);
unittests/ADT/APIntTest.cpp 1016 APInt::udivrem(p, b, q, r);