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

  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp 27 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
28 if (AlwaysInline || (Align & 0x3) != 0 || !ConstantSize)
31 uint64_t SizeVal = ConstantSize->getZExtValue();
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 51 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
69 if ((Align & 3) != 0 || !ConstantSize ||
70 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) {
102 uint64_t SizeVal = ConstantSize->getZExtValue();
203 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
206 if (!ConstantSize)
208 uint64_t SizeVal = ConstantSize->getZExtValue();
  /external/llvm/include/llvm/Object/
StackMapParser.h 306 ConstantsListOffset + getNumConstants() * ConstantSize;
425 static const unsigned ConstantSize = sizeof(uint64_t);
432 return ConstantsListOffset + ConstantIndex * ConstantSize;
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 147 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
148 if (!ConstantSize)
151 uint64_t SizeVal = ConstantSize->getZExtValue();
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.h 227 GLuint ConstantSize;
i915_vtbl.c 279 sz += state->ConstantSize * sizeof(GLuint);
488 emit(intel, state->Constant, state->ConstantSize * sizeof(GLuint));
i915_program.c 572 i915->state.ConstantSize = 2 + (nr) * 4;
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 126 milliseconds