HomeSort by relevance Sort by last modified time
    Searched refs:getSigned (Results 1 - 18 of 18) sorted by null

  /external/llvm/unittests/Support/
DataExtractorTest.cpp 78 EXPECT_EQ(-128, DE.getSigned(&offset, 1));
81 EXPECT_EQ(-32624, DE.getSigned(&offset, 2));
84 EXPECT_EQ(-2137980929, DE.getSigned(&offset, 4));
87 EXPECT_EQ(-9182558167379214336LL, DE.getSigned(&offset, 8));
  /external/llvm/include/llvm/Support/
DataExtractor.h 110 int64_t getSigned(uint32_t *offset_ptr, uint32_t size) const;
  /external/llvm/lib/Support/
DataExtractor.cpp 107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const {
118 llvm_unreachable("getSigned unhandled case!");
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 167 Value *ZeroV = ConstantInt::getSigned(Dividend->getType(), 0);
IntegerDivision.cpp 169 NegOne = ConstantInt::getSigned(DivTy, -1);
175 NegOne = ConstantInt::getSigned(DivTy, -1);
LoopUtils.cpp 706 auto *StepValue = ConstantInt::getSigned(CV->getType(), CVSize / Size);
  /external/llvm/unittests/IR/
ConstantsTest.cpp 29 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
109 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
111 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
112 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 326 Inst->setOperand(OpIdx, ConstantInt::getSigned(SExt->getType(),
  /external/llvm/include/llvm/IR/
Constants.h 87 static ConstantInt *getSigned(IntegerType *Ty, int64_t V);
88 static Constant *getSigned(Type *Ty, int64_t V);
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 127 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(CGF.Int64Ty, Width),
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 441 ZeroShadow = ConstantInt::getSigned(ShadowTy, 0);
442 ShadowPtrMul = ConstantInt::getSigned(IntptrTy, ShadowWidth / 8);
444 ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0x700000000000LL);
446 ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0xF000000000LL);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 763 Constant *RHS = ConstantInt::getSigned(Op0->getType(), isCtPop ? -1:0);
    [all...]
InstCombineCalls.cpp 665 return ConstantInt::getSigned(VecTy, 0); // FALSE
667 return ConstantInt::getSigned(VecTy, -1); // TRUE
    [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/IR/
Constants.cpp 596 ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
600 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 440 ConstantInt::getSigned(OffsetTy, (int64_t)(Addr.Offset));
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 327 milliseconds