HomeSort by relevance Sort by last modified time
    Searched refs:Counters (Results 1 - 25 of 45) sorted by null

1 2

  /external/v8/src/
v8-counters.cc 30 #include "v8-counters.h"
36 HistogramTimer Counters::name = { #caption, NULL, false, 0, 0 }; \
42 StatsCounter Counters::name = { "c:" #caption, NULL, false };
48 StatsCounter Counters::state_counters[] = {
heap-inl.h 32 #include "v8-counters.h"
65 Counters::objs_since_last_full.Increment();
66 Counters::objs_since_last_young.Increment();
128 Counters::objs_since_last_full.Increment();
129 Counters::objs_since_last_young.Increment();
145 Counters::objs_since_last_full.Increment();
146 Counters::objs_since_last_young.Increment();
322 Counters::gc_last_resort_from_handles.Increment(); \
compiler.cc 61 HistogramTimerScope timer(&Counters::variable_allocation);
175 ? &Counters::compile_eval
176 : &Counters::compile;
245 Counters::total_load_size.Increment(source_length);
246 Counters::total_compile_size.Increment(source_length);
315 Counters::total_eval_size.Increment(source_length);
316 Counters::total_compile_size.Increment(source_length);
365 Counters::total_compile_size.Increment(end_position - start_position);
385 HistogramTimerScope timer(&Counters::compile_lazy);
code-stubs.cc 52 Counters::code_stubs.Increment();
72 Counters::total_stubs_code_size.Increment(code->instruction_size());
compilation-cache.cc 275 Counters::compilation_cache_hits.Increment();
278 Counters::compilation_cache_misses.Increment();
314 Counters::compilation_cache_hits.Increment();
317 Counters::compilation_cache_misses.Increment();
354 Counters::compilation_cache_hits.Increment();
357 Counters::compilation_cache_misses.Increment();
handles.cc 417 Counters::script_wrappers.Decrement();
429 Counters::script_wrappers.Increment();
636 Counters::for_in.Increment();
648 Counters::enum_cache_hits.Increment();
652 Counters::enum_cache_misses.Increment();
codegen.cc 228 Counters::total_compiled_code_size.Increment(code->instruction_size());
242 Counters::total_old_codegen_source_size.Increment(len);
global-handles.cc 272 Counters::global_handles.Increment();
296 Counters::global_handles.Decrement();
zone-inl.h 32 #include "v8-counters.h"
67 Counters::zone_segment_bytes.Set(segment_bytes_allocated_);
heap.cc 178 Counters::gc_compactor_caused_by_request.Increment();
184 Counters::gc_compactor_caused_by_promoted_data.Increment();
190 Counters::gc_compactor_caused_by_oldspace_exhaustion.Increment();
204 Counters::gc_compactor_caused_by_oldspace_exhaustion.Increment();
351 Counters::alive_after_last_gc.Set(SizeOfObjects());
353 Counters::symbol_table_capacity.Set(symbol_table()->Capacity());
354 Counters::number_of_symbols.Set(symbol_table()->NumberOfElements());
380 HistogramTimerScope scope(&Counters::gc_context);
416 ? &Counters::gc_scavenger
417 : &Counters::gc_compactor
    [all...]
rewriter.cc 823 HistogramTimerScope timer(&Counters::rewriting);
844 HistogramTimerScope timer(&Counters::ast_optimization);
runtime.cc     [all...]
jump-target.cc 56 Counters::compute_entry_frame.Increment();
usage-analyzer.cc 422 HistogramTimerScope timer(&Counters::usage_analysis);
v8-counters.h 31 #include "counters.h"
196 // This file contains all the v8 counters that are in use.
197 class Counters : AllStatic {
224 // Sliding state window counters.
  /external/chromium/net/disk_cache/
stats.h 25 enum Counters {
59 void OnEvent(Counters an_event);
60 void SetCounter(Counters counter, int64 value);
61 int64 GetCounter(Counters counter) const;
81 int GetRatio(Counters hit, Counters miss) const;
stats.cc 20 int64 counters[disk_cache::Stats::MAX_COUNTER]; member in struct:__anon2594::OnDiskStats
103 // If we have more than 512 bytes of counters, change kDiskSignature so we
129 memcpy(counters_, stats.counters, sizeof(counters_));
243 void Stats::OnEvent(Counters an_event) {
248 void Stats::SetCounter(Counters counter, int64 value) {
253 int64 Stats::GetCounter(Counters counter) const {
281 int Stats::GetRatio(Counters hit, Counters miss) const {
315 memcpy(stats.counters, counters_, sizeof(counters_));
backend_impl.h 178 void OnEvent(Stats::Counters an_event);
  /external/v8/src/x64/
stub-cache-x64.cc     [all...]
builtins-x64.cc 113 __ IncrementCounter(&Counters::arguments_adaptors, 1);
710 __ IncrementCounter(&Counters::array_function_native, 1);
741 __ IncrementCounter(&Counters::array_function_native, 1);
763 __ IncrementCounter(&Counters::array_function_native, 1);
    [all...]
  /external/v8/src/ia32/
stub-cache-ia32.cc 753 __ IncrementCounter(&Counters::call_const_interceptor, 1);
756 __ IncrementCounter(&Counters::call_const_interceptor_fast_api, 1);
    [all...]
builtins-ia32.cc 351 __ IncrementCounter(&Counters::constructed_objects, 1);
    [all...]
  /external/v8/src/arm/
stub-cache-arm.cc     [all...]
builtins-arm.cc 320 __ IncrementCounter(&Counters::array_function_native, 1, r3, r4);
356 __ IncrementCounter(&Counters::array_function_native, 1, r2, r4);
380 __ IncrementCounter(&Counters::array_function_native, 1, r2, r6);
811 __ IncrementCounter(&Counters::constructed_objects, 1, r1, r2);
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 62 // Callback receiver to track counters in test.
119 ExternalReference(&Counters::keyed_load_function_prototype);
120 CHECK_EQ(make_code(STATS_COUNTER, Counters::k_keyed_load_function_prototype),
156 ExternalReference(&Counters::keyed_load_function_prototype);
160 Counters::k_keyed_load_function_prototype)));

Completed in 863 milliseconds

1 2