HomeSort by relevance Sort by last modified time
    Searched defs:isInBounds (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
Local.h 195 bool isInBounds = GEPOp->isInBounds() && !NoAssumptions;
221 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
232 GEP->getName()+".idx", isInBounds /*NUW*/);
  /external/chromium_org/third_party/WebKit/Source/wtf/
CheckedArithmetic.h 171 template <typename Target, typename Source> static inline bool isInBounds(Source value)
443 if (!isInBounds<T>(value))
458 if (!isInBounds<T>(rhs.m_value))
467 if (!isInBounds<T>(rhs.m_value))
  /external/chromium_org/third_party/WebKit/Source/core/platform/
LayoutUnit.h 214 static bool isInBounds(int value)
218 static bool isInBounds(unsigned value)
222 static bool isInBounds(double value)
  /external/llvm/include/llvm/IR/
Operator.h 360 IsInBounds = (1 << 0)
367 (SubclassOptionalData & ~IsInBounds) | (B * IsInBounds);
371 /// isInBounds - Test whether this is an inbounds GEP, as defined
373 bool isInBounds() const {
374 return SubclassOptionalData & IsInBounds;
  /external/llvm/lib/IR/
Instructions.cpp     [all...]

Completed in 243 milliseconds