HomeSort by relevance Sort by last modified time
    Searched refs:isSafe (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/audio/
AudioArray.h 47 bool isSafe = (start <= end) && (end <= this->size());
48 ASSERT(isSafe);
49 if (!isSafe)
57 bool isSafe = (start <= end) && (end <= this->size());
58 ASSERT(isSafe);
59 if (!isSafe)
AudioChannel.cpp 52 bool isSafe = (sourceChannel && sourceChannel->length() >= length());
53 ASSERT(isSafe);
54 if (!isSafe)
82 bool isSafe = sourceChannel && sourceChannel->length() >= length();
83 ASSERT(isSafe);
84 if (!isSafe)
ReverbAccumulationBuffer.cpp 96 bool isSafe = writeIndex <= bufferLength && numberOfFrames1 + writeIndex <= bufferLength && numberOfFrames2 <= bufferLength;
97 ASSERT(isSafe);
98 if (!isSafe)
ReverbConvolver.cpp 180 bool isSafe = sourceChannel && destinationChannel && sourceChannel->length() >= framesToProcess && destinationChannel->length() >= framesToProcess;
181 ASSERT(isSafe);
182 if (!isSafe)
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 608 static bool isSafe(const SCEV *S, const Loop *L, ScalarEvolution *SE) {
622 if (!isSafe(*I, L, SE)) return false;
628 return isSafe(C->getOperand(), L, SE);
632 return isSafe(UD->getLHS(), L, SE) &&
633 isSafe(UD->getRHS(), L, SE);
672 if (!isSafe(AR, L, SE))
    [all...]
  /external/icu4c/i18n/
usearch.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]

Completed in 383 milliseconds