OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FunctionCounts
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Analysis/
ProfileInfoLoader.h
33
std::vector<unsigned>
FunctionCounts
;
56
return
FunctionCounts
;
/external/llvm/tools/llvm-prof/
llvm-prof.cpp
158
std::vector<std::pair<Function*, double> >
FunctionCounts
;
163
FunctionCounts
.push_back(std::make_pair(FI, w));
172
sort(
FunctionCounts
.begin(),
FunctionCounts
.end(),
176
for (unsigned i = 0, e =
FunctionCounts
.size(); i != e; ++i)
177
TotalExecutions +=
FunctionCounts
[i].second;
195
for (unsigned i = 0, e =
FunctionCounts
.size(); i != e; ++i) {
196
if (
FunctionCounts
[i].second == 0) {
203
<< format("%5.2g",
FunctionCounts
[i].second) << "/"
205
<<
FunctionCounts
[i].first->getNameStr() << "\n"
[
all
...]
Completed in 327 milliseconds