OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumCounters
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/profile/
InstrProfiling.h
34
const uint32_t
NumCounters
;
InstrProfilingPlatformOther.c
39
CountersLast = Data->Counters + Data->
NumCounters
;
54
UPDATE_LAST(CountersLast, Data->Counters + Data->
NumCounters
);
/external/llvm/lib/ProfileData/
InstrProfReader.cpp
103
uint64_t
NumCounters
;
106
if ((Line++)->getAsInteger(10,
NumCounters
))
108
if (
NumCounters
== 0)
113
Counts.reserve(
NumCounters
);
114
for (uint64_t I = 0; I <
NumCounters
; ++I) {
246
uint32_t
NumCounters
= swap(Data->
NumCounters
);
247
if (
NumCounters
== 0)
249
auto RawCounts = makeArrayRef(getCounter(Data->CounterPtr),
NumCounters
);
/external/llvm/include/llvm/ProfileData/
InstrProfReader.h
147
const uint32_t
NumCounters
;
249
unsigned
NumCounters
= N / sizeof(uint64_t) - 1;
251
CountBuffer.reserve(
NumCounters
- 1);
252
for (unsigned I = 0; I <
NumCounters
; ++I)
Completed in 89 milliseconds