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

  /external/llvm/unittests/VMCore/
ConstantsTest.cpp 23 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
103 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
105 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
106 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
  /external/llvm/unittests/Support/
DataExtractorTest.cpp 77 EXPECT_EQ(-128, DE.getSigned(&offset, 1));
80 EXPECT_EQ(-32624, DE.getSigned(&offset, 2));
83 EXPECT_EQ(-2137980929, DE.getSigned(&offset, 4));
86 EXPECT_EQ(-9182558167379214336LL, DE.getSigned(&offset, 8));
  /external/llvm/include/llvm/Support/
DataExtractor.h 108 int64_t getSigned(uint32_t *offset_ptr, uint32_t size) const;
  /external/llvm/lib/DebugInfo/
DWARFFormValue.h 65 int64_t getSigned() const { return Value.sval; }
DWARFFormValue.cpp 304 case DW_FORM_sdata: OS << getSigned(); break;
DWARFDebugInfoEntry.cpp 408 return form_value.getSigned();
  /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/include/llvm/
Constants.h 81 static ConstantInt *getSigned(IntegerType *Ty, int64_t V);
82 static Constant *getSigned(Type *Ty, int64_t V);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 690 Constant *RHS = ConstantInt::getSigned(Op0->getType(), isCtPop ? -1:0);
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 438 ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
442 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 381 milliseconds