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

1 2 3

  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
function-templates-original.cc 8 bool isInBounds(From value) {
14 if (!isInBounds<To>(value))
29 if (!isInBounds<T>(rhs.m_value))
  /external/guava/guava-tests/test/com/google/common/math/
DoubleMathTest.java 87 boolean isInBounds = expected.compareTo(MAX_INT_AS_BIG_DECIMAL) <= 0
92 assertTrue(isInBounds);
94 assertFalse(isInBounds);
105 boolean isInBounds = expected.compareTo(MAX_INT_AS_BIG_DECIMAL) <= 0
110 assertTrue(isInBounds);
112 assertFalse(isInBounds);
122 boolean isInBounds = expected.compareTo(MAX_INT_AS_BIG_DECIMAL) <= 0
127 assertTrue(isInBounds);
129 assertFalse(isInBounds);
173 boolean isInBounds = expected.compareTo(MAX_LONG_AS_BIG_DECIMAL) <=
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
AudioBandSpecs.java 57 public boolean isInBounds(double freq, double value) {
AudioFrequencyLineActivity.java 447 if (bandSpecsArray[currentBand].isInBounds(freq, value)) {
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 196 bool isInBounds = GEPOp->isInBounds() && !NoAssumptions;
227 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
238 GEP->getName()+".idx", isInBounds /*NUW*/);
  /external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/
Cloning.cpp 128 EXPECT_FALSE(this->clone(GEP)->isInBounds());
131 EXPECT_TRUE(this->clone(GEP)->isInBounds());
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 169 NewGEP->setIsInBounds(GEP->isInBounds());
180 Indices, GEP->isInBounds());
NVPTXGenericToNVVM.cpp 337 return cast<GEPOperator>(C)->isInBounds()
NVPTXInferAddressSpaces.cpp 321 NewGEP->setIsInBounds(GEP->isInBounds());
  /frameworks/compile/libbcc/lib/
RSX86TranslateGEPPass.cpp 116 Int8PtrGEP->setIsInBounds(GEP->isInBounds());
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 391 IndexExprs, GEP->isInBounds());
435 NewGEP->setIsInBounds(GEP->isInBounds());
StraightLineStrengthReduce.cpp 504 IndexExprs, GEP->isInBounds());
634 bool InBounds = cast<GetElementPtrInst>(C.Ins)->isInBounds();
SeparateConstOffsetFromGEP.cpp 697 GEP->isInBounds());
713 GEP->isInBounds())
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Operator.h 230 IsInBounds = (1 << 0)
237 (SubclassOptionalData & ~IsInBounds) | (B * IsInBounds);
241 /// isInBounds - Test whether this is an inbounds GEP, as defined
243 bool isInBounds() const {
244 return SubclassOptionalData & IsInBounds;
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 409 bool isInBounds = cast<GEPOperator>(GEP)->isInBounds();
435 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
446 GEP->getName()+".idx", isInBounds /*NUW*/);
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
Evaluator.cpp 130 cast<GEPOperator>(CE)->isInBounds()) {
316 cast<GEPOperator>(GEP)->isInBounds());
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 138 EXPECT_FALSE(this->clone(GEP)->isInBounds());
141 EXPECT_TRUE(this->clone(GEP)->isInBounds());
  /external/llvm/include/llvm/IR/
Operator.h 367 IsInBounds = (1 << 0)
374 (SubclassOptionalData & ~IsInBounds) | (B * IsInBounds);
379 bool isInBounds() const {
380 return SubclassOptionalData & IsInBounds;
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 414 Result->setIsInBounds(GEP->isInBounds());
  /external/llvm/lib/Target/PowerPC/
PPCLoopPreIncPrep.cpp 128 return GEP->isInBounds();
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 270 GEP2->setIsInBounds(GEP->isInBounds());
  /external/swiftshader/third_party/LLVM/lib/Analysis/
PHITransAddr.cpp 413 Result->setIsInBounds(GEP->isInBounds());
  /external/llvm/lib/IR/
Value.cpp 454 if (!GEP->isInBounds())
510 if (!GEP->isInBounds())
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 515 milliseconds

1 2 3