/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Function.h | 247 class ProfileCount { 251 static ProfileCount Invalid; 254 ProfileCount() : Count(-1), PCT(PCT_Invalid) {} in ProfileCount() function 255 ProfileCount(uint64_t Count, ProfileCountType PCT) in ProfileCount() function 264 ProfileCount &setCount(uint64_t C) { in setCount() 268 static ProfileCount getInvalid() { return ProfileCount(-1, PCT_Invalid); } in getInvalid() 277 void setEntryCount(ProfileCount Count, 288 ProfileCount getEntryCount() const;
|
/external/llvm/include/llvm/IR/ |
D | ModuleSummaryIndex.h | 37 uint64_t ProfileCount; member 38 CalleeInfo() : CallsiteCount(0), ProfileCount(0) {} in CalleeInfo() 39 CalleeInfo(unsigned CallsiteCount, uint64_t ProfileCount) in CalleeInfo() 40 : CallsiteCount(CallsiteCount), ProfileCount(ProfileCount) {} in CalleeInfo() 43 ProfileCount += RHSProfileCount;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | SyntheticCountsPropagation.cpp | 44 using ProfileCount = Function::ProfileCount; typedef 137 ProfileCount(Entry.second, Function::PCT_Synthetic)); in run()
|
D | SampleProfile.cpp | 90 using ProfileCount = Function::ProfileCount; typedef 1461 ProfileCount(Samples->getHeadSamples() + 1, Function::PCT_Real), in emitAnnotations() 1588 F.setEntryCount(ProfileCount(-1, Function::PCT_Real)); in runOnFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Function.cpp | 58 using ProfileCount = Function::ProfileCount; typedef 1352 void Function::setEntryCount(ProfileCount Count, in setEntryCount() 1367 setEntryCount(ProfileCount(Count, Type), Imports); in setEntryCount() 1370 ProfileCount Function::getEntryCount() const { in getEntryCount() 1380 return ProfileCount::getInvalid(); in getEntryCount() 1381 return ProfileCount(Count, PCT_Real); in getEntryCount() 1385 return ProfileCount(Count, PCT_Synthetic); in getEntryCount() 1388 return ProfileCount::getInvalid(); in getEntryCount()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ModuleSummaryAnalysis.cpp | 121 static CalleeInfo::HotnessType getHotness(uint64_t ProfileCount, in getHotness() argument 125 if (PSI->isHotCount(ProfileCount)) in getHotness() 127 if (PSI->isColdCount(ProfileCount)) in getHotness()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ShaderLang.cpp | 175 const int ProfileCount = 4; // index range in MapProfileToIndex variable 189 assert(index < ProfileCount); in MapProfileToIndex() 226 TSymbolTable* CommonSymbolTable[VersionCount][SpvVersionCount][ProfileCount][SourceCount][EPcCount]… 227 TSymbolTable* SharedSymbolTables[VersionCount][SpvVersionCount][ProfileCount][SourceCount][EShLangC… 1350 for (int p = 0; p < ProfileCount; ++p) { in ShFinalize() 1363 for (int p = 0; p < ProfileCount; ++p) { in ShFinalize()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 69 using ProfileCount = Function::ProfileCount; typedef 1234 ProfileCount(Count.getValue(), Function::PCT_Real)); // FIXME in extractCodeRegion()
|
D | InlineFunction.cpp | 75 using ProfileCount = Function::ProfileCount; typedef 1435 const ProfileCount &CalleeEntryCount, in updateCallProfile()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
D | PGOInstrumentation.cpp | 122 using ProfileCount = Function::ProfileCount; typedef 1143 F.setEntryCount(ProfileCount(FuncEntryCount, Function::PCT_Real)); in populateCounters()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 1345 if (Optional<uint64_t> ProfileCount = 1348 OS << ", count = " << ProfileCount.getValue();
|
/external/dng_sdk/source/ |
D | dng_negative.cpp | 1236 uint32 dng_negative::ProfileCount () const in ProfileCount() function in dng_negative 1248 DNG_ASSERT (index < ProfileCount (), in ProfileByIndex() 1266 uint32 profileCount = ProfileCount (); in ProfileByID() 1411 uint32 count = ProfileCount (); in ComputeCameraProfileToEmbed()
|
D | dng_negative.h | 1646 uint32 ProfileCount () const;
|
D | dng_image_writer.cpp | 6319 uint32 profileCount = negative.ProfileCount (); in WriteDNG()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 3232 NameVals.push_back(ECI.second.ProfileCount); in writePerModuleFunctionSummaryRecord() 3476 HasProfileData |= EI.second.ProfileCount != 0; in writeCombinedGlobalValueSummary() 3490 NameVals.push_back(EI.second.ProfileCount); in writeCombinedGlobalValueSummary()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 6203 uint64_t ProfileCount = HasProfile ? Record[++I] : 0; in parseEntireSummary() local 6206 CalleeInfo(CallsiteCount, ProfileCount)); in parseEntireSummary() 6292 uint64_t ProfileCount = HasProfile ? Record[++I] : 0; in parseEntireSummary() local 6295 CalleeInfo(CallsiteCount, ProfileCount)); in parseEntireSummary()
|