Searched defs:ConstantSize (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp36 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
37 if (ConstantSize) {
38 uint64_t SizeVal = ConstantSize->getZExtValue();
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp39 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
49 if ((Align & 3) != 0 || !ConstantSize ||
50 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) {
81 uint64_t SizeVal = ConstantSize->getZExtValue();
184 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
186 if (!ConstantSize)
188 uint64_t SizeVal = ConstantSize->getZExtValue();
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_context.h227 GLuint ConstantSize; member in struct:i915_hw_state
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_context.h227 GLuint ConstantSize; member in struct:i915_hw_state
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4189 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
4190 if (ConstantSize) {
4192 if (ConstantSize->isNullValue())
4196 ConstantSize->getZExtValue(),Align,
4214 assert(ConstantSize && "AlwaysInline requires a constant size!");
4216 ConstantSize->getZExtValue(), Align, isVol,
4257 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
4258 if (ConstantSize) {
4260 if (ConstantSize->isNullValue())
4265 ConstantSize
4312 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
[all...]

Completed in 1009 milliseconds