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

  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 241 unsigned MaxCost = ShufTab[0].Cost;
244 if (ShufTab[i].Cost > MaxCost)
245 MaxCost = ShufTab[i].Cost;
300 if (ShufTab[LHS].Cost + 1 >= MaxCost)
328 if (ShufTab[RHS].Cost + 1 >= MaxCost)
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 62 static const int MaxCost = TEXMAP_TEXTURE_CACHE_KBS * 1024;
63 static const int PurgeAmount = MaxCost / 4;
71 if (m_totalCost <= TextureMapperCache::MaxCost)
80 for (int i = size-1; i >= 0 && m_totalCost > TextureMapperCache::MaxCost - TextureMapperCache::PurgeAmount; --i) {
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 454 EvictionCost MaxCost(1);
455 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
510 /// @param MaxCost Only look for cheaper candidates and update with new cost
512 /// @returns True when interference can be evicted cheaper than MaxCost.
514 bool IsHint, EvictionCost &MaxCost) {
570 if (!(Cost < MaxCost))
577 MaxCost = Cost;
    [all...]

Completed in 97 milliseconds