OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetCounter
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/v8/src/arm64/
instrument-arm64.cc
146
static Counter* counter =
GetCounter
("Instruction");
192
static Counter* counter =
GetCounter
("Instruction");
199
Counter* Instrument::
GetCounter
(const char* name) {
236
static Counter* counter =
GetCounter
("PC Addressing");
243
static Counter* sp_counter =
GetCounter
("SP Adjust");
244
static Counter* add_sub_counter =
GetCounter
("Add/Sub DP");
258
static Counter* counter =
GetCounter
("Logical DP");
265
static Counter* counter =
GetCounter
("Move Immediate");
278
static Counter* counter =
GetCounter
("Other Int DP");
285
static Counter* counter =
GetCounter
("Other Int DP")
[
all
...]
instrument-arm64.h
71
Counter*
GetCounter
(const char* name);
/external/vixl/src/a64/
instrument-a64.cc
166
static Counter* counter =
GetCounter
("Instruction");
212
static Counter* counter =
GetCounter
("Instruction");
219
Counter* Instrument::
GetCounter
(const char* name) {
257
static Counter* counter =
GetCounter
("PC Addressing");
265
static Counter* counter =
GetCounter
("Add/Sub DP");
273
static Counter* counter =
GetCounter
("Logical DP");
280
static Counter* counter =
GetCounter
("Move Immediate");
294
static Counter* counter =
GetCounter
("Other Int DP");
302
static Counter* counter =
GetCounter
("Other Int DP");
310
static Counter* counter =
GetCounter
("Unconditional Branch")
[
all
...]
instrument-a64.h
94
Counter*
GetCounter
(const char* name);
/external/chromium_org/chrome/renderer/
benchmarking_extension.cc
29
" native function
GetCounter
();"
30
" return
GetCounter
(name);"
65
if (name->Equals(v8::String::NewFromUtf8(isolate, "
GetCounter
"))) {
66
return v8::FunctionTemplate::New(isolate,
GetCounter
);
92
static void
GetCounter
(const v8::FunctionCallbackInfo<v8::Value>& args) {
/external/chromium_org/tools/telemetry/telemetry/timeline/
process.py
54
def
GetCounter
(self, category, name):
63
return self.
GetCounter
(category, name)
/external/chromium_org/net/disk_cache/blockfile/
stats.cc
187
int64 Stats::
GetCounter
(Counters counter) const {
311
int64 ratio =
GetCounter
(hit) * 100;
315
ratio /= (
GetCounter
(hit) +
GetCounter
(miss));
stats.h
71
int64
GetCounter
(Counters counter) const;
backend_impl.cc
489
int64 total_hours = stats_.
GetCounter
(Stats::TIMER) / 120;
490
int64 no_use_hours = stats_.
GetCounter
(Stats::LAST_REPORT_TIMER) / 120;
914
int64 last_report = stats_.
GetCounter
(Stats::LAST_REPORT);
932
int64 use_time = stats_.
GetCounter
(Stats::TIMER);
1013
int64 time = stats_.
GetCounter
(Stats::TIMER);
1014
int64 current = stats_.
GetCounter
(Stats::OPEN_ENTRIES);
[
all
...]
backend_impl_v3.cc
256
int64 last_report = stats_.
GetCounter
(Stats::LAST_REPORT);
276
int64 use_time = stats_.
GetCounter
(Stats::TIMER);
325
int64 time = stats_.
GetCounter
(Stats::TIMER);
326
int64 current = stats_.
GetCounter
(Stats::OPEN_ENTRIES);
451
int64 total_hours = stats_.
GetCounter
(Stats::TIMER) / 120;
452
int64 no_use_hours = stats_.
GetCounter
(Stats::LAST_REPORT_TIMER) / 120;
821
int64 errors = stats_.
GetCounter
(Stats::FATAL_ERROR);
822
int64 full_dooms = stats_.
GetCounter
(Stats::DOOM_CACHE);
823
int64 partial_dooms = stats_.
GetCounter
(Stats::DOOM_RECENT);
824
int64 last_report = stats_.
GetCounter
(Stats::LAST_REPORT)
[
all
...]
/external/chromium_org/content/test/gpu/gpu_tests/
memory.py
71
counter = process.
GetCounter
('gpu', 'GpuMemoryUsage')
/external/chromium_org/v8/src/
d8.h
370
static Counter*
GetCounter
(const char* name, bool is_histogram);
d8.cc
695
Counter* Shell::
GetCounter
(const char* name, bool is_histogram) {
712
Counter* counter =
GetCounter
(name, false);
726
return
GetCounter
(name, true);
[
all
...]
Completed in 297 milliseconds