Home
last modified time | relevance | path

Searched refs:getSigned (Results 1 – 15 of 15) sorted by relevance

/external/llvm/unittests/Support/
DDataExtractorTest.cpp78 EXPECT_EQ(-128, DE.getSigned(&offset, 1)); in TEST()
81 EXPECT_EQ(-32624, DE.getSigned(&offset, 2)); in TEST()
84 EXPECT_EQ(-2137980929, DE.getSigned(&offset, 4)); in TEST()
87 EXPECT_EQ(-9182558167379214336LL, DE.getSigned(&offset, 8)); in TEST()
/external/llvm/unittests/IR/
DConstantsTest.cpp26 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1)); in TEST()
106 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue()); in TEST()
108 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue()); in TEST()
109 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue()); in TEST()
/external/llvm/include/llvm/DebugInfo/
DDWARFFormValue.h65 int64_t getSigned() const { return Value.sval; } in getSigned() function
/external/llvm/include/llvm/Support/
DDataExtractor.h111 int64_t getSigned(uint32_t *offset_ptr, uint32_t size) const;
/external/llvm/lib/Support/
DDataExtractor.cpp107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const { in getSigned() function in DataExtractor
/external/llvm/lib/Transforms/Utils/
DBypassSlowDivision.cpp166 Value *ZeroV = ConstantInt::getSigned(Dividend->getType(), 0); in insertFastDiv()
DIntegerDivision.cpp137 ConstantInt *NegOne = ConstantInt::getSigned(I32Ty, -1); in generateUnsignedDivisionCode()
/external/llvm/lib/DebugInfo/
DDWARFDebugInfoEntry.cpp257 return form_value.getSigned(); in getAttributeValueAsSigned()
DDWARFFormValue.cpp375 case DW_FORM_sdata: OS << getSigned(); break; in dump()
/external/llvm/include/llvm/IR/
DConstants.h86 static ConstantInt *getSigned(IntegerType *Ty, int64_t V);
87 static Constant *getSigned(Type *Ty, int64_t V);
/external/clang/lib/CodeGen/
DCGDeclCXX.cpp127 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(CGF.Int64Ty, Width), in EmitDeclInvariant()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineShifts.cpp738 Constant *RHS = ConstantInt::getSigned(Op0->getType(), isCtPop ? -1:0); in visitLShr()
DInstCombineAndOrXor.cpp1507 Builder->CreateAdd(B, ConstantInt::getSigned(B->getType(), -1)), A); in FoldOrOfICmps()
2079 return SelectInst::Create(A, ConstantInt::getSigned(I.getType(), -1), Op1); in visitOr()
2081 return SelectInst::Create(A, ConstantInt::getSigned(I.getType(), -1), Op0); in visitOr()
/external/llvm/lib/IR/
DConstants.cpp507 ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) { in getSigned() function in ConstantInt
511 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) { in getSigned() function in ConstantInt
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp4465 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset))); in Expand()
4473 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, in Expand()
4507 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy), in Expand()