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

1 2 3 4

  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 103 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
106 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
124 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
127 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
145 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
148 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
  /frameworks/compile/slang/
slang_rs_reflection_base.cpp 161 tmp << ((api.getSExtValue() == 0) ? "false" : "true");
163 tmp << api.getSExtValue();
slang_rs_pragma_handler.cpp 306 this->handleInt(PP, PragmaToken, static_cast<int>(Val.getSExtValue()));
  /external/llvm/unittests/IR/
ConstantsTest.cpp 104 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, false)->getSExtValue());
105 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, true)->getSExtValue());
106 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
107 EXPECT_EQ(-50, ConstantInt::get(Int8Ty, 206)->getSExtValue());
108 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
112 EXPECT_EQ(0x3b, ConstantInt::get(Int8Ty, 0x13b)->getSExtValue());
  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 62 CharUnits regionSize = CharUnits::fromQuantity(extentInt->getSExtValue());
  /external/llvm/unittests/ADT/
APIntTest.cpp 30 EXPECT_EQ(-3, Minus3.getSExtValue());
39 EXPECT_EQ(-1, Minus1.getSExtValue());
52 EXPECT_EQ(-2, i33minus2.getSExtValue());
101 EXPECT_EQ(0u, zero.getSExtValue());
111 EXPECT_EQ(1, one.getSExtValue());
122 EXPECT_EQ(0, neg_two.getSExtValue());
123 EXPECT_EQ(-1, neg_one.getSExtValue());
126 EXPECT_EQ(-1, one.getSExtValue());
129 EXPECT_EQ(0, two.getSExtValue());
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 154 int64_t v = (int64_t)N->getSExtValue();
164 int64_t v = (int64_t)N->getSExtValue();
174 int64_t v = (int64_t)N->getSExtValue();
184 int64_t v = (int64_t)N->getSExtValue();
194 int64_t v = (int64_t)N->getSExtValue();
204 int64_t v = (int64_t)N->getSExtValue();
214 int64_t v = (int64_t)N->getSExtValue();
392 int32_t Val = cast<ConstantSDNode>(OffsetNode)->getSExtValue();
456 int32_t Val = cast<ConstantSDNode>(OffsetNode)->getSExtValue();
530 int32_t Val = cast<ConstantSDNode>(OffsetNode)->getSExtValue();
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 86 if (isInt<13>(CN->getSExtValue())) {
122 if (isInt<13>(CN->getSExtValue()))
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 613 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127
641 int64_t Exp = (Imm.lshr(52).getSExtValue() & 0x7ff) - 1023; // -1022 to 1023
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 209 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() -
210 cast<ConstantInt>(Leaf.Low)->getSExtValue();
  /external/clang/tools/libclang/
CXType.cpp 261 return TD->getInitVal().getSExtValue();
606 result = cast<ConstantArrayType> (TP)->getSize().getSExtValue();
643 result = cast<ConstantArrayType> (TP)->getSize().getSExtValue();
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 190 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
227 uint64_t Offset = CN->getSExtValue();
MSP430ISelLowering.cpp 727 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
740 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
753 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
766 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 258 os << C.getValue().getSExtValue();
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 62 return GenVal->IntVal.getSExtValue();
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 358 Indices.push_back(CI->getSExtValue());
404 Operands.push_back(C->getSExtValue());
566 Indices.push_back(cast<ConstantInt>(*II)->getSExtValue());
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 250 if (isInt<16>(CN->getSExtValue())) {
396 int64_t Imm = CN->getSExtValue();
Mips16ISelDAGToDAG.cpp 180 if (isInt<16>(CN->getSExtValue())) {
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 302 if (isInt<32>(CI->getSExtValue()))
310 .addImm(Signed ? (uint64_t) CI->getSExtValue() :
397 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
432 Disp += CI->getSExtValue() * S;
444 Disp += CI->getSExtValue() * S;
891 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
913 .addImm(Op1C->getSExtValue());
    [all...]
X86ISelDAGToDAG.cpp 174 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
610 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
    [all...]
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 50 << "interrupt" << (int)NumParams.getSExtValue()
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 308 BaseOffs += TD->getTypeAllocSize(*GTI)*CIdx->getSExtValue();
328 BaseOffs += IndexOffset.getSExtValue()*Scale;
329 Scale *= IndexScale.getSExtValue();
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 230 int64_t SignedVal = cast<ConstantSDNode>(Node)->getSExtValue();
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 246 int Priority = CI ? CI->getSExtValue() : 0;

Completed in 698 milliseconds

1 2 3 4