Searched refs:MathOp (Results 1 – 6 of 6) sorted by relevance
/external/libchrome/base/numerics/ |
D | safe_math_shared_impl.h | 209 return CL_ABBR##MathOp<CLASS##OP_NAME##Op, L, R, Args...>(lhs, rhs, \ 221 return decltype(lhs OP rhs)::template MathOp<CLASS##OP_NAME##Op>(lhs, \ 229 return MathOp<CLASS##OP_NAME##Op>(rhs); \
|
D | clamped_math.h | 148 static constexpr ClampedNumeric MathOp(const L lhs, const R rhs) { in MathOp() function 156 constexpr ClampedNumeric& MathOp(const R rhs) { in MathOp() function 210 return ClampedNumeric<typename Math::result_type>::template MathOp<M>(lhs, in ClampMathOp()
|
D | checked_math.h | 230 static constexpr CheckedNumeric MathOp(const L lhs, const R rhs) { in MathOp() function 241 constexpr CheckedNumeric& MathOp(const R rhs) { in MathOp() function 325 return CheckedNumeric<typename Math::result_type>::template MathOp<M>(lhs,
|
/external/pdfium/third_party/base/numerics/ |
D | safe_math.h | 296 static CheckedNumeric MathOp(const L lhs, const R rhs) { in MathOp() function 307 CheckedNumeric& MathOp(const R rhs) { in MathOp() function 408 return CheckedNumeric<typename Math::result_type>::template MathOp<M>(lhs, 441 return decltype(lhs OP rhs)::template MathOp<Checked##NAME##Op>(lhs, rhs); \ 447 return MathOp<Checked##NAME##Op>(rhs); \
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 3756 unsigned MathOp = ISD::DELETED_NODE; in visitMUL() local 3762 MathOp = ISD::ADD; in visitMUL() 3764 MathOp = ISD::SUB; in visitMUL() 3766 if (MathOp != ISD::DELETED_NODE) { in visitMUL() 3768 MathOp == ISD::ADD ? (MulC - 1).logBase2() : (MulC + 1).logBase2(); in visitMUL() 3776 TZeros ? DAG.getNode(MathOp, DL, VT, Shl, in visitMUL() 3779 : DAG.getNode(MathOp, DL, VT, Shl, N0); in visitMUL()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 3528 unsigned MathOp = ISD::DELETED_NODE; in visitMUL() local 3531 MathOp = ISD::ADD; in visitMUL() 3533 MathOp = ISD::SUB; in visitMUL() 3535 if (MathOp != ISD::DELETED_NODE) { in visitMUL() 3537 MathOp == ISD::ADD ? (MulC - 1).logBase2() : (MulC + 1).logBase2(); in visitMUL() 3543 SDValue R = DAG.getNode(MathOp, DL, VT, Shl, N0); in visitMUL()
|