HomeSort by relevance Sort by last modified time
    Searched refs:Div (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/llvm/include/llvm/Transforms/Utils/
IntegerDivision.h 35 /// Generate code to divide two integers, replacing Div with the generated
41 /// @brief Replace Div with generated code.
42 bool expandDivision(BinaryOperator* Div);
58 /// Generate code to divide two integers, replacing Div with the generated
59 /// code. Uses ExpandDivision with a 32bit Div which makes it useful for
63 bool expandDivisionUpTo32Bits(BinaryOperator *Div);
65 /// Generate code to divide two integers, replacing Div with the generated
66 /// code. Uses ExpandDivision with a 64bit Div.
69 bool expandDivisionUpTo64Bits(BinaryOperator *Div);
  /art/test/417-optimizing-arith-div/src/
Main.java 77 $opt$Div(value, 0);
90 $opt$Div(value, 0L);
102 div(); method
105 public static void div() { method in class:Main
114 expectEquals(2, $opt$Div(6, 3));
115 expectEquals(6, $opt$Div(6, 1));
116 expectEquals(-2, $opt$Div(6, -3));
117 expectEquals(1, $opt$Div(4, 3));
118 expectEquals(-1, $opt$Div(4, -3));
119 expectEquals(5, $opt$Div(23, 4))
    [all...]
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Div.java 14 public class Div implements IExpression {
20 public Div(final IExpression l, final IExpression r) {
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 385 llvm_unreachable("Div over vectors not supported");
390 llvm_unreachable("Div of bitwidth other than 32 or 64 not supported");
429 /// Generate code to divide two integers, replacing Div with the generated
435 /// @brief Replace Div with generated code.
436 bool llvm::expandDivision(BinaryOperator *Div) {
437 assert((Div->getOpcode() == Instruction::SDiv ||
438 Div->getOpcode() == Instruction::UDiv) &&
441 IRBuilder<> Builder(Div);
443 Type *DivTy = Div->getType();
445 llvm_unreachable("Div over vectors not supported")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Div.java 19 * $Id: Div.java 468655 2006-10-28 07:12:06Z minchau $
28 * The 'div' operation expression executer.
30 public class Div extends Operation
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 41 Value *Div = Builder.CreateSDiv(A, B);
44 Value *Ret = Builder.CreateRet(Div);
46 expandDivision(cast<BinaryOperator>(Div));
71 Value *Div = Builder.CreateUDiv(A, B);
74 Value *Ret = Builder.CreateRet(Div);
76 expandDivision(cast<BinaryOperator>(Div));
162 Value *Div = Builder.CreateSDiv(A, B);
165 Value *Ret = Builder.CreateRet(Div);
167 expandDivision(cast<BinaryOperator>(Div));
192 Value *Div = Builder.CreateUDiv(A, B)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 30 import org.apache.xpath.operations.Div;
103 (pred instanceof Div) ||
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
ExpressionParser.java 23 import org.jacoco.examples.expressions.Div;
68 e = new Div(e, factor());
  /external/libnfc-nxp/src/
phFriNfc_OvrHalCmd.h 75 void *Div;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 257 // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
258 SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
261 // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
262 Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
263 Quotient_S_One, Div, ISD::SETEQ);
281 DAG.ReplaceAllUsesWith(Op.getValue(0).getNode(), &Div);
  /external/v8/src/compiler/
machine-operator.h 334 V(Int, Div) \
338 V(Uint, Div) \
  /external/llvm/include/llvm/MC/
MCExpr.h 412 Div, ///< Signed division.
458 return create(Div, LHS, RHS, Ctx);
  /external/clang/include/clang/AST/
StmtVisitor.h 124 BINOP_FALLBACK(Mul) BINOP_FALLBACK(Div) BINOP_FALLBACK(Rem)
  /external/libchrome/base/numerics/
safe_math.h 288 BASE_NUMERIC_ARITHMETIC_OPERATORS(Div, /, /= )
  /external/libweave/third_party/chromium/base/numerics/
safe_math.h 288 BASE_NUMERIC_ARITHMETIC_OPERATORS(Div, /, /= )
  /external/pdfium/third_party/base/numerics/
safe_math.h 260 BASE_NUMERIC_ARITHMETIC_OPERATORS(Div, /, /= )
  /external/v8/src/base/
safe_math.h 264 BASE_NUMERIC_ARITHMETIC_OPERATORS(Div, /, /= )
  /external/valgrind/VEX/priv/
host_amd64_defs.c 521 case Asse_DIVF: return "div";
665 i->Ain.Div.syned = syned;
666 i->Ain.Div.sz = sz;
667 i->Ain.Div.src = src;
    [all...]
host_mips_defs.c 271 ret = "div.d";
295 ret = "div.s";
857 /* div */
862 i->Min.Div.syned = syned;
863 i->Min.Div.sz32 = sz32; /* True = 32 bits */
864 i->Min.Div.srcL = srcL;
865 i->Min.Div.srcR = srcR;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 44 import org.apache.xpath.operations.Div;
148 expr = div(opPos); break;
397 * Compile a 'div' operation.
401 * @return reference to {@link org.apache.xpath.operations.Div} instance.
405 protected Expression div(int opPos) throws TransformerException method in class:Compiler
407 return compileOperation(new Div(), opPos);
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
ConstantRange.cpp 562 APInt Div(getBitWidth(), 0);
563 APInt::udivrem(LowerDiv, MaxBitValue, Div, LowerDiv);
564 UpperDiv = UpperDiv - MaxBitValue * Div;
  /external/opencv3/modules/core/test/ocl/
test_arithm.cpp 359 //////////////////////////////// Div /////////////////////////////////////////////////
361 typedef ArithmTestBase Div;
363 OCL_TEST_P(Div, Mat)
375 OCL_TEST_P(Div, Scalar)
388 OCL_TEST_P(Div, Scalar2)
401 OCL_TEST_P(Div, Mat_Scale)
414 OCL_TEST_P(Div, Mat_Scalar_Scale)
427 OCL_TEST_P(Div, Recip)
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp     [all...]

Completed in 983 milliseconds

1 2 3 4