Searched refs:AddValue (Results 1 - 11 of 11) sorted by relevance

/art/runtime/base/
H A Dhistogram_test.cc28 // hist->AddValue(121);
29 // hist->AddValue(132);
30 // hist->AddValue(140);
31 // hist->AddValue(145);
32 // hist->AddValue(155);
41 hist->AddValue(static_cast<uint64_t>(50));
46 hist->AddValue(9);
47 hist->AddValue(17);
48 hist->AddValue(28);
49 hist->AddValue(2
[all...]
H A Dhistogram.h47 void AddValue(Value);
H A Dhistogram-inl.h33 template <class Value> inline void Histogram<Value>::AddValue(Value value) { function in class:art::Histogram
44 AddValue(value / kAdjust);
H A Dtiming_logger.cc106 histogram->AddValue(delta_time);
/art/compiler/optimizing/
H A Dinduction_var_range_test.cc233 Value AddValue(Value v1, Value v2) { return range_.AddValue(v1, v2); } function in class:art::InductionVarRangeTest
466 TEST_F(InductionVarRangeTest, AddValue) {
467 ExpectEqual(Value(110), AddValue(Value(10), Value(100)));
468 ExpectEqual(Value(-5), AddValue(Value(x_, 1, -4), Value(x_, -1, -1)));
469 ExpectEqual(Value(x_, 3, -5), AddValue(Value(x_, 2, -4), Value(x_, 1, -1)));
470 ExpectEqual(Value(), AddValue(Value(x_, 1, 5), Value(y_, 1, -7)));
471 ExpectEqual(Value(x_, 1, 23), AddValue(Value(x_, 1, 20), Value(3)));
472 ExpectEqual(Value(y_, 1, 5), AddValue(Value(55), Value(y_, 1, -50)));
474 ExpectEqual(Value(max_value), AddValue(Valu
[all...]
H A Dinduction_var_range.h167 Value AddValue(Value v1, Value v2) const;
H A Dinduction_var_range.cc344 return AddValue(GetMul(info->op_a, trip, trip, in_body, is_min),
359 return AddValue(Value(static_cast<int32_t>(value)),
362 return AddValue(GetFetch(instruction->InputAt(0), trip, in_body, is_min),
392 return AddValue(GetVal(info->op_a, trip, in_body, is_min),
520 InductionVarRange::Value InductionVarRange::AddValue(Value v1, Value v2) const { function in class:art::InductionVarRange
602 return AddValue(MulValue(Value(v.a_constant), GetVal(info, trip, in_body, is_min)), Value(v.b_constant));
/art/runtime/
H A Dleb128_test.cc286 enc_hist->AddValue(cur_time - last_time);
297 dec_hist->AddValue(cur_time - last_time);
/art/runtime/jit/
H A Djit_code_cache.cc381 histogram_code_memory_use_.AddValue(code_size);
437 histogram_stack_map_memory_use_.AddValue(size);
881 histogram_profiling_info_memory_use_.AddValue(profile_info_size);
H A Djit.cc549 memory_use_.AddValue(bytes);
/art/runtime/gc/
H A Dheap.cc2813 gc_count_rate_histogram_.AddValue(gc_count_last_window_ - 1); // Exclude the current run.
2814 blocking_gc_count_rate_histogram_.AddValue(running_collection_is_blocking_ ?
2818 gc_count_rate_histogram_.AddValue(0);
2819 blocking_gc_count_rate_histogram_.AddValue(0);
3875 native_allocation_histogram_.AddValue(bytes);
3923 native_free_histogram_.AddValue(bytes);

Completed in 135 milliseconds