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

1 2

  /external/guava/guava-tests/test/com/google/common/math/
DoubleMathTest.java 76 boolean isInBounds = expected.compareTo(MAX_INT_AS_BIG_DECIMAL) <= 0
81 assertTrue(isInBounds);
83 assertFalse(isInBounds);
93 boolean isInBounds = expected.compareTo(MAX_INT_AS_BIG_DECIMAL) <= 0
98 assertTrue(isInBounds);
100 assertFalse(isInBounds);
109 boolean isInBounds = expected.compareTo(MAX_INT_AS_BIG_DECIMAL) <= 0
114 assertTrue(isInBounds);
116 assertFalse(isInBounds);
156 boolean isInBounds = expected.compareTo(MAX_LONG_AS_BIG_DECIMAL) <=
    [all...]
  /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*/);
  /libcore/luni/src/main/java/java/util/
TreeMap.java     [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 133 EXPECT_FALSE(this->clone(GEP)->isInBounds());
136 EXPECT_TRUE(this->clone(GEP)->isInBounds());
  /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/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))
StdLibExtras.h 140 ASSERT(isInBounds<To>(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/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineCompares.cpp 230 if (!GEP->isInBounds() && TD == 0) return 0;
396 if (!GEP->isInBounds() &&
622 if (TD && PtrBase == RHS && GEPLHS->isInBounds()) {
655 if (TD && GEPLHS->isInBounds() && GEPRHS->isInBounds() &&
694 bool GEPsInBounds = GEPLHS->isInBounds() && GEPRHS->isInBounds();
    [all...]
InstCombinePHI.cpp 153 AllInBounds &= GEP->isInBounds();
    [all...]
InstCombineVectorOps.cpp 641 GEP->setIsInBounds(cast<GetElementPtrInst>(I)->isInBounds());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 270 GEP2->setIsInBounds(GEP->isInBounds());
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 414 Result->setIsInBounds(GEP->isInBounds());
InstructionSimplify.cpp 688 if (!GEP->isInBounds() || !GEP->accumulateConstantOffset(*TD, Offset))
    [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 339 return cast<GEPOperator>(C)->isInBounds()
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 270 GEP2->setIsInBounds(GEP->isInBounds());
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 324 if (TD && I.isInBounds()) {
873 if (!GEP->isInBounds() || !accumulateGEPOffset(*GEP, Offset))
    [all...]
  /external/llvm/lib/IR/
Value.cpp 363 if (!GEP->isInBounds())
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 519 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
    [all...]

Completed in 478 milliseconds

1 2