HomeSort by relevance Sort by last modified time
    Searched defs:ConstantSize (Results 1 - 5 of 5) 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/mesa3d/src/mesa/drivers/dri/i915/
i915_context.h 227 GLuint ConstantSize;
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 447 milliseconds