OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_chronos
(Results
1 - 4
of
4
) sorted by null
/external/eigen/bench/btl/generic_bench/timers/
STL_perf_analyzer.hh
29
STL_Perf_Analyzer(unsigned long long nb_sample=DEFAULT_NB_SAMPLE):_nb_sample(nb_sample),
_chronos
()
47
_chronos
.start_baseline(_nb_sample);
52
} while (
_chronos
.check());
54
double baseline_time=
_chronos
.get_time();
56
_chronos
.start(_nb_sample);
60
} while (
_chronos
.check());
62
double calculate_time=
_chronos
.get_time();
74
STL_Timer
_chronos
;
member in class:STL_Perf_Analyzer
x86_perf_analyzer.hh
29
X86_Perf_Analyzer( unsigned long long nb_sample=DEFAULT_NB_SAMPLE):_nb_sample(nb_sample),
_chronos
()
32
_chronos
.find_frequency();
54
_chronos
.clear();
58
_chronos
.start();
61
_chronos
.stop();
62
_chronos
.add_get_click();
65
calculate_time += double(
_chronos
.get_shortest_clicks())/
_chronos
.frequency();
69
_chronos
.clear();
73
_chronos
.start()
100
X86_Timer
_chronos
;
member in class:X86_Perf_Analyzer
[
all
...]
portable_perf_analyzer_old.hh
29
Portable_Perf_Analyzer( void ):_nb_calc(1),_nb_init(1),
_chronos
(){
100
_chronos
.start();
103
_chronos
.stop();
104
return
_chronos
.user_time();
111
_chronos
.start();
117
_chronos
.stop();
118
return
_chronos
.user_time();
130
Portable_Timer
_chronos
;
member in class:Portable_Perf_Analyzer
portable_perf_analyzer.hh
30
Portable_Perf_Analyzer( ):_nb_calc(0), m_time_action(0),
_chronos
(){
80
_chronos
.start();
85
_chronos
.stop();
86
return
_chronos
.user_time();
98
Portable_Timer
_chronos
;
member in class:Portable_Perf_Analyzer
Completed in 70 milliseconds