/external/chromium_org/third_party/tcmalloc/vendor/src/ |
D | profiledata.cc | 54 const int ProfileData::kMaxStackDepth; 55 const int ProfileData::kAssociativity; 56 const int ProfileData::kBuckets; 57 const int ProfileData::kBufferLength; 59 ProfileData::Options::Options() in Options() 65 void ProfileData::Evict(const Entry& entry) { in Evict() 79 ProfileData::ProfileData() in ProfileData() function in ProfileData 91 bool ProfileData::Start(const char* fname, in Start() 92 const ProfileData::Options& options) { in Start() 131 ProfileData::~ProfileData() { in ~ProfileData() [all …]
|
D | profiledata.h | 78 class ProfileData { 105 ProfileData(); 106 ~ProfileData(); 180 DISALLOW_COPY_AND_ASSIGN(ProfileData);
|
D | profiler.cc | 106 ProfileData collector_; 166 ProfileData::Options collector_options; in Start() 229 ProfileData::State collector_state; in GetCurrentState() 267 void* stack[ProfileData::kMaxStackDepth]; in prof_handler()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
D | profiledata.cc | 54 const int ProfileData::kMaxStackDepth; 55 const int ProfileData::kAssociativity; 56 const int ProfileData::kBuckets; 57 const int ProfileData::kBufferLength; 59 ProfileData::Options::Options() in Options() 65 void ProfileData::Evict(const Entry& entry) { in Evict() 79 ProfileData::ProfileData() in ProfileData() function in ProfileData 91 bool ProfileData::Start(const char* fname, in Start() 92 const ProfileData::Options& options) { in Start() 131 ProfileData::~ProfileData() { in ~ProfileData() [all …]
|
D | profiledata.h | 78 class ProfileData { 105 ProfileData(); 106 ~ProfileData(); 180 DISALLOW_COPY_AND_ASSIGN(ProfileData);
|
D | profiler.cc | 108 ProfileData collector_; 168 ProfileData::Options collector_options; in Start() 231 ProfileData::State collector_state; in GetCurrentState() 269 void* stack[ProfileData::kMaxStackDepth]; in prof_handler()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
D | profiledata_unittest.cc | 323 ProfileData::State state; in ExpectRunningSamples() 329 void ExpectSameState(const ProfileData::State& before, in ExpectSameState() 330 const ProfileData::State& after) { in ExpectSameState() 337 ProfileData collector_; 378 ProfileData::State state_before; in TEST_F() 395 ProfileData::State state_after; in TEST_F() 410 ProfileData::Options options; in TEST_F() 433 ProfileData::Options())); in TEST_F() 452 ProfileData::Options options; in TEST_F() 456 ProfileData::State state_before; in TEST_F() [all …]
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
D | profiledata_unittest.cc | 323 ProfileData::State state; in ExpectRunningSamples() 329 void ExpectSameState(const ProfileData::State& before, in ExpectSameState() 330 const ProfileData::State& after) { in ExpectSameState() 337 ProfileData collector_; 378 ProfileData::State state_before; in TEST_F() 395 ProfileData::State state_after; in TEST_F() 410 ProfileData::Options options; in TEST_F() 433 ProfileData::Options())); in TEST_F() 452 ProfileData::Options options; in TEST_F() 456 ProfileData::State state_before; in TEST_F() [all …]
|
/external/llvm/lib/ProfileData/ |
D | LLVMBuild.txt | 1 ;===- ./lib/ProfileData/LLVMBuild.txt --------------------------*- Conf -*--===; 20 name = ProfileData
|
D | InstrProfReader.cpp | 220 ptrdiff_t CountersOffset = DataOffset + sizeof(ProfileData) * DataSize; in readHeader() 228 Data = reinterpret_cast<const ProfileData *>(Start + DataOffset); in readHeader()
|
/external/chromium_org/chrome/browser/extensions/ |
D | user_script_listener.cc | 59 struct UserScriptListener::ProfileData { struct in extensions::UserScriptListener 67 ProfileData() : user_scripts_ready(false) {} in ProfileData() function 178 ProfileData& data = profile_data_[profile_id]; in AppendNewURLPatterns() 189 ProfileData& data = profile_data_[profile_id]; in ReplaceURLPatterns()
|
D | user_script_listener.h | 92 struct ProfileData; 93 typedef std::map<void*, ProfileData> ProfileDataMap;
|
/external/llvm/lib/ |
D | Makefile | 15 IRReader LineEditor ProfileData
|
D | CMakeLists.txt | 19 add_subdirectory(ProfileData)
|
D | LLVMBuild.txt | 19 …nfo ExecutionEngine LineEditor Linker IR IRReader LTO MC Object Option ProfileData Support TableGe…
|
/external/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 145 struct ProfileData { struct 165 const ProfileData *Data; argument 166 const ProfileData *DataEnd;
|
/external/llvm/tools/llvm-profdata/ |
D | LLVMBuild.txt | 22 required_libraries = ProfileData Support
|
/external/clang/lib/CodeGen/ |
D | CMakeLists.txt | 12 ProfileData
|
/external/clang/tools/driver/ |
D | CMakeLists.txt | 14 ProfileData
|
/external/llvm/ |
D | Android.mk | 33 lib/ProfileData \
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 793 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof); in swapSuccessors() local 794 if (!ProfileData || ProfileData->getNumOperands() != 3) in swapSuccessors() 799 ProfileData->getOperand(0), in swapSuccessors() 800 ProfileData->getOperand(2), in swapSuccessors() 801 ProfileData->getOperand(1) in swapSuccessors() 804 MDNode::get(ProfileData->getContext(), Ops)); in swapSuccessors()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1935 MDNode *ProfileData = BI->getMetadata(LLVMContext::MD_prof); in ExtractBranchMetadata() local 1936 if (!ProfileData || ProfileData->getNumOperands() != 3) return false; in ExtractBranchMetadata() 1937 ConstantInt *CITrue = dyn_cast<ConstantInt>(ProfileData->getOperand(1)); in ExtractBranchMetadata() 1938 ConstantInt *CIFalse = dyn_cast<ConstantInt>(ProfileData->getOperand(2)); in ExtractBranchMetadata()
|
/external/chromium_org/third_party/tcmalloc/vendor/ |
D | ChangeLog | 395 * Add Options struct to ProfileData (cgd) 549 * Fixed race condition in ProfileData::FlushTable (etune)
|