Home
last modified time | relevance | path

Searched refs:clock_current (Results 1 – 3 of 3) sorted by relevance

/dports/science/code_saturne/code_saturne-7.1.0/preprocessor/util/
H A Decs_timer.c235 static clock_t clock_current; in ecs_timer_cpu_time() local
237 clock_current = clock(); in ecs_timer_cpu_time()
238 if (clock_current != (clock_t)-1) in ecs_timer_cpu_time()
240 = ((double)(clock_current - _ecs_timer_clock_start)) / CLOCKS_PER_SEC; in ecs_timer_cpu_time()
/dports/science/code_saturne/code_saturne-7.1.0/libple/src/
H A Dple_defs.c710 static clock_t clock_current; in ple_timer_cpu_time() local
712 clock_current = clock(); in ple_timer_cpu_time()
713 if (clock_current != (clock_t)-1) in ple_timer_cpu_time()
715 = ((double)(clock_current - _ple_timer_clock_start)) / CLOCKS_PER_SEC; in ple_timer_cpu_time()
/dports/science/code_saturne/code_saturne-7.1.0/src/base/
H A Dcs_timer.c364 clock_t clock_current = clock() - _cs_timer_clock_start; in _cs_timer_cpu_stdc_clock() local
365 timer->sec = clock_current / CLOCKS_PER_SEC; in _cs_timer_cpu_stdc_clock()
366 timer->nsec = (clock_current % CLOCKS_PER_SEC)*1.e+9/CLOCKS_PER_SEC; in _cs_timer_cpu_stdc_clock()