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

1 2

  /external/clang/test/CodeGen/
BasicInstrs.c 6 unsigned int udiv(unsigned int X, unsigned int Y) { function
  /external/compiler-rt/lib/arm/
umodsi3.S 29 udiv r2, r0, r1
udivmodsi4.S 38 udiv r0, r3, r1
udivsi3.S 39 udiv r0, r0, r1
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 442 TEST_F(ConstantRangeTest, UDiv) {
443 EXPECT_EQ(Full.udiv(Full), Full);
444 EXPECT_EQ(Full.udiv(Empty), Empty);
445 EXPECT_EQ(Full.udiv(One), ConstantRange(APInt(16, 0),
447 EXPECT_EQ(Full.udiv(Some), ConstantRange(APInt(16, 0),
449 EXPECT_EQ(Full.udiv(Wrap), Full);
450 EXPECT_EQ(Empty.udiv(Empty), Empty);
451 EXPECT_EQ(Empty.udiv(One), Empty);
452 EXPECT_EQ(Empty.udiv(Some), Empty);
453 EXPECT_EQ(Empty.udiv(Wrap), Empty)
    [all...]
  /external/llvm/include/llvm/Support/
ConstantRange.h 234 /// udiv - Return a new range representing the possible values resulting
237 ConstantRange udiv(const ConstantRange &Other) const;
  /external/llvm/include/llvm/ADT/
APSInt.h 100 *this = udiv(RHS);
111 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
APInt.h 68 /// of the operation. For example, sdiv and udiv. However, because the bit
893 APInt udiv(const APInt &RHS) const;
    [all...]
  /external/llvm/lib/Support/
APInt.cpp     [all...]
ConstantRange.cpp 625 ConstantRange::udiv(const ConstantRange &RHS) const { function in class:ConstantRange
631 APInt Lower = getUnsignedMin().udiv(RHS.getUnsignedMax());
643 APInt Upper = getUnsignedMax().udiv(RHS_umin) + 1;
  /external/llvm/unittests/ADT/
APIntTest.cpp 173 EXPECT_EQ(neg_one, one.udiv(neg_one));
174 EXPECT_EQ(neg_one, neg_one.udiv(one));
175 EXPECT_EQ(one, neg_one.udiv(neg_one));
176 EXPECT_EQ(one, one.udiv(one));
  /external/llvm/utils/vim/
llvm.vim 33 syn keyword llvmStatement sle slt srem store sub switch trunc udiv ueq uge ugt
  /external/clang/lib/Lex/
LiteralSupport.cpp 868 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 697 // Additional macros to execute binary operations udiv/sdiv/urem/srem since
734 case Instruction::UDiv: INTEGER_VECTOR_FUNCTION(udiv) break;
776 case Instruction::UDiv: R.IntVal = Src1.IntVal.udiv(Src2.IntVal); break;
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 737 case Instruction::UDiv:
738 Result.markConstantRange(LHSRange.udiv(RHSRange));
    [all...]
ConstantFolding.cpp 755 APInt NewIdx = Offset.udiv(ElemSize);
    [all...]
ScalarEvolution.cpp 212 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(this);
213 OS << "(" << *UDiv->getLHS() << " /u " << *UDiv->getRHS() << ")";
605 // Lexicographically compare udiv expressions.
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 646 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
  /external/qemu/target-arm/
helper.h 14 DEF_HELPER_2(udiv, i32, i32, i32)
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 224 * CHECK: @const_udiv = global i64 udiv
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 716 case Instruction::UDiv:
734 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
    [all...]
  /external/llvm/test/MC/AArch64/
basic-a64-diagnostics.s     [all...]
basic-a64-instructions.s     [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
sparcv8.S 340 udiv %o1,%o2,%o0
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]

Completed in 1756 milliseconds

1 2