OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetCounter
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/v8/src/arm64/
instrument-arm64.cc
145
static Counter* counter =
GetCounter
("Instruction");
191
static Counter* counter =
GetCounter
("Instruction");
198
Counter* Instrument::
GetCounter
(const char* name) {
235
static Counter* counter =
GetCounter
("PC Addressing");
242
static Counter* sp_counter =
GetCounter
("SP Adjust");
243
static Counter* add_sub_counter =
GetCounter
("Add/Sub DP");
257
static Counter* counter =
GetCounter
("Logical DP");
264
static Counter* counter =
GetCounter
("Move Immediate");
277
static Counter* counter =
GetCounter
("Other Int DP");
284
static Counter* counter =
GetCounter
("Other Int DP")
[
all
...]
instrument-arm64.h
72
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
59
def
GetCounter
(self, category, name):
68
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_v3.cc
249
int64 last_report = stats_.
GetCounter
(Stats::LAST_REPORT);
269
int64 use_time = stats_.
GetCounter
(Stats::TIMER);
318
int64 time = stats_.
GetCounter
(Stats::TIMER);
319
int64 current = stats_.
GetCounter
(Stats::OPEN_ENTRIES);
444
int64 total_hours = stats_.
GetCounter
(Stats::TIMER) / 120;
445
int64 no_use_hours = stats_.
GetCounter
(Stats::LAST_REPORT_TIMER) / 120;
824
int64 errors = stats_.
GetCounter
(Stats::FATAL_ERROR);
825
int64 full_dooms = stats_.
GetCounter
(Stats::DOOM_CACHE);
826
int64 partial_dooms = stats_.
GetCounter
(Stats::DOOM_RECENT);
827
int64 last_report = stats_.
GetCounter
(Stats::LAST_REPORT)
[
all
...]
backend_impl.cc
480
int64 total_hours = stats_.
GetCounter
(Stats::TIMER) / 120;
481
int64 no_use_hours = stats_.
GetCounter
(Stats::LAST_REPORT_TIMER) / 120;
965
int64 last_report = stats_.
GetCounter
(Stats::LAST_REPORT);
983
int64 use_time = stats_.
GetCounter
(Stats::TIMER);
1064
int64 time = stats_.
GetCounter
(Stats::TIMER);
1065
int64 current = stats_.
GetCounter
(Stats::OPEN_ENTRIES);
[
all
...]
/external/chromium_org/content/test/gpu/gpu_tests/
memory_test.py
73
counter = process.
GetCounter
('gpu', 'GpuMemoryUsage')
/external/chromium_org/content/child/webcrypto/openssl/
aes_ctr_openssl.cc
97
crypto::ScopedBIGNUM
GetCounter
(const CryptoData& counter_block,
191
GetCounter
(counter_block, counter_length_bits);
/external/chromium_org/v8/src/
d8.h
380
static Counter*
GetCounter
(const char* name, bool is_histogram);
d8.cc
745
Counter* Shell::
GetCounter
(const char* name, bool is_histogram) {
762
Counter* counter =
GetCounter
(name, false);
776
return
GetCounter
(name, true);
[
all
...]
Completed in 1468 milliseconds