HomeSort by relevance Sort by last modified time
    Searched refs:getSigned (Results 1 - 15 of 15) 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/lib/DebugInfo/
DWARFFormValue.h 65 int64_t getSigned() const { return Value.sval; }
DWARFFormValue.cpp 374 case DW_FORM_sdata: OS << getSigned(); break;
DWARFDebugInfoEntry.cpp 449 return form_value.getSigned();
  /external/llvm/include/llvm/Support/
DataExtractor.h 111 int64_t getSigned(uint32_t *offset_ptr, uint32_t size) const;
  /external/llvm/unittests/IR/
ConstantsTest.cpp 26 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
106 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
108 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
109 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
  /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 166 Value *ZeroV = ConstantInt::getSigned(Dividend->getType(), 0);
IntegerDivision.cpp 137 ConstantInt *NegOne = ConstantInt::getSigned(I32Ty, -1);
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 126 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(CGF.Int64Ty, Width),
  /external/llvm/include/llvm/IR/
Constants.h 85 static ConstantInt *getSigned(IntegerType *Ty, int64_t V);
86 static Constant *getSigned(Type *Ty, int64_t V);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 738 Constant *RHS = ConstantInt::getSigned(Op0->getType(), isCtPop ? -1:0);
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/IR/
Constants.cpp 500 ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
504 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
    [all...]

Completed in 128 milliseconds