Home | History | Annotate | Download | only in src

Lines Matching refs:getTickCount

398         int64 t1_detect=getTickCount();
418 int64 t2_detect = getTickCount();
536 double lastBigDetectionDuration = 1000.0 * (((double)(getTickCount() - timeWhenDetectingThreadStartedWork )) / freq);
543 double time_from_previous_launch_in_ms=1000.0 * (((double)(getTickCount() - timeWhenDetectingThreadStartedWork )) / freq); //the same formula as for lastBigDetectionDuration
556 timeWhenDetectingThreadStartedWork = getTickCount() ;
628 static long long time_when_last_call_started=getTickCount();
631 double delta_time_from_prev_call=1000.0 * (((double)(getTickCount() - time_when_last_call_started)) / freq);
634 time_when_last_call_started=getTickCount();