Home
last modified time | relevance | path

Searched refs:IsFree (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp186 unsigned IsFree : 1; member
312 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they " in analyzeLoopUnrollCost()
328 if (!Cost.IsFree) { in analyzeLoopUnrollCost()
422 bool IsFree = Analyzer.visit(I); in analyzeLoopUnrollCost() local
424 (unsigned)IsFree, in analyzeLoopUnrollCost()
429 if (IsFree) in analyzeLoopUnrollCost()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp263 unsigned IsFree : 1; member
393 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they " in analyzeLoopUnrollCost()
409 if (!Cost.IsFree) { in analyzeLoopUnrollCost()
508 bool IsFree = Analyzer.visit(I); in analyzeLoopUnrollCost() local
510 (unsigned)IsFree, in analyzeLoopUnrollCost()
515 if (IsFree) in analyzeLoopUnrollCost()
DLICM.cpp734 bool IsFree = isFreeInLoop(I, CurLoop, TTI); in isNotUsedOrFreeInLoop() local
752 if (IsFree) { in isNotUsedOrFreeInLoop()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DExplainOutputStyle.cpp144 bool IsFree = File.pdb().getMsfLayout().FreePageMap[pdbBlockIndex()]; in explainPdbBlockStatus() local
146 IsFree ? "un" : ""); in explainPdbBlockStatus()
147 return !IsFree; in explainPdbBlockStatus()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/MSF/
DMSFBuilder.cpp328 bool IsFree = in commitFpm() local
330 uint8_t Mask = uint8_t(IsFree) << I; in commitFpm()
/external/gptfdisk/
Dgpttext.cc215 } while (IsFree(sector) == 0); in CreatePartition()
233 } while (IsFree(sector) == 0); in CreatePartition()
Dgpt.h184 int IsFree(uint64_t sector, uint32_t *partNum = NULL);
Dgpt.cc1797 if (IsFree(startSector) && (startSector <= endSector)) { in CreatePartition()
2002 sectorOK = IsFree(testSector++); in Align()
2015 sectorOK = IsFree(testSector--); in Align()
2225 int GPTData::IsFree(uint64_t sector, uint32_t *partNum) { in IsFree() function in GPTData