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

  /external/llvm/lib/Target/R600/
AMDGPUFrameLowering.cpp 78 int UpperBound = FI == -1 ? MFI->getNumObjects() : FI;
80 for (int i = MFI->getObjectIndexBegin(); i < UpperBound; ++i) {
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 520 int UpperBound, LowerBound;
522 UpperBound = Node2Index[X->NodeNum];
525 if (LowerBound < UpperBound) {
528 DFS(Y, UpperBound, HasLoop);
531 Shift(Visited, LowerBound, UpperBound);
545 void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound,
560 if (Node2Index[s] == UpperBound) {
565 if (!Visited.test(s) && Node2Index[s] < UpperBound) {
575 int UpperBound) {
580 for (i = LowerBound; i <= UpperBound; ++i)
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.cpp 246 UpperBound,
275 case UpperBound:
303 return getScaledValue<UpperBound>(m_scaledColumns, origX, searchStart);
313 return getScaledValue<UpperBound>(m_scaledRows, origY, searchStart);
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 194 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
195 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound,
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 526 APInt UpperBound = CUB->getValue()->getValue();
527 DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n");
528 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 710 void DFS(const SUnit *SU, int UpperBound, bool& HasLoop);
714 void Shift(BitVector& Visited, int LowerBound, int UpperBound);
  /external/openfst/src/include/fst/extensions/pdt/
compose.h 252 if (label > open_parens_.UpperBound())
267 if (label > close_parens_.UpperBound())
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 282 DefinedOrUnknownSVal UpperBound,
285 if (Idx.isUnknown() || UpperBound.isUnknown())
288 // Build an expression for 0 <= Idx < UpperBound.
289 // This is the same as Idx + MIN < UpperBound + MIN, if overflow is allowed.
310 svalBuilder.evalBinOpNN(this, BO_Add, UpperBound.castAs<NonLoc>(),
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/openfst/src/include/fst/
util.h 441 Key UpperBound() const { return max_key_; }
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 295 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi);
296 return Builder->CreateICmpULT(Add, UpperBound);
    [all...]

Completed in 276 milliseconds