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

  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 664 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal);
666 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second))
667 CacheMap.erase(CacheIt);
685 CacheMapTy::iterator CacheIt = CacheMap.find(V);
686 if (CacheIt != CacheMap.end())
687 return CacheIt->second;
720 // Don't reuse CacheIt since it may be invalid at this point.
BasicAliasAnalysis.cpp 684 auto CacheIt = AliasCache.find(LocPair(LocA, LocB));
685 if (CacheIt != AliasCache.end())
686 return CacheIt->second;
    [all...]
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 805 auto CacheIt = PenaltyCache.find(CacheKey);
806 if (DryRun && CacheIt != PenaltyCache.end())
807 return CacheIt->second;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 395 auto CacheIt = Cache.find(Cond);
396 if (CacheIt != Cache.end())
397 return CacheIt->second;
    [all...]

Completed in 603 milliseconds