Home
last modified time | relevance | path

Searched refs:stop_time (Results 1 – 23 of 23) sorted by relevance

/external/ltp/lib/
Dtst_timer.c15 static struct timespec start_time, stop_time; variable
76 if (tst_clock_gettime(clock_id, &stop_time)) in tst_timer_stop()
82 return tst_timespec_diff(stop_time, start_time); in tst_timer_elapsed()
Dparse_opts.c496 static uint64_t stop_time = 0; in usc_test_looping() local
512 stop_time = in usc_test_looping()
524 if (STD_LOOP_DURATION != 0.0 && get_current_time() < stop_time) in usc_test_looping()
Dtst_test.c1091 unsigned long long stop_time = 0; in testrun() local
1099 stop_time = get_time_ms() + (unsigned long long)(duration * 1000); in testrun()
1109 if (stop_time && get_time_ms() < stop_time) in testrun()
/external/openscreen/platform/test/
Dfake_clock.cc41 const Clock::time_point stop_time = now() + delta; in Advance() local
55 if (step_to > stop_time) { in Advance()
64 now_.store(stop_time, std::memory_order_release); in Advance()
/external/ltp/testcases/kernel/sched/sched_stress/
Dsched_tc4.c114 clock_t stop_time; in main() local
153 stop_time = time((time_t *) & timer_info); in main()
154 elapsed_time = (float)(stop_time - start_time) / 100.0; in main()
Dsched_tc5.c111 clock_t stop_time; in main() local
151 stop_time = time((time_t *) & timer_info); in main()
152 elapsed_time = (float)(stop_time - start_time) / 100.0; in main()
Dsched_tc6.c138 clock_t stop_time; in main() local
200 stop_time = time(&timer_info); in main()
201 elapsed_time = (float)(stop_time - start_time) / 100.0; in main()
/external/autotest/client/profilers/oprofile/
Doprofile.py137 self.stop_time = time.ctime()
151 logging.info('Ending oprofile: %s' % self.stop_time)
160 logging.info('Ending oprofile: %s' % self.stop_time)
/external/libwebm/
Dsample_muxer_metadata.cc140 if (c.stop_time < c.start_time) { in ParseChapters()
172 const time_ms_t stop_time_ms = cue.stop_time.presentation(); in AddChapter()
296 if (c.stop_time < c.start_time) { in Parse()
368 const int64_t stop_ms = cue.stop_time.presentation(); in Write()
Ddumpvtt.cc54 const libwebvtt::Time& sp = cue.stop_time; in main()
/external/tensorflow/tensorflow/lite/examples/python/
Dlabel_image.py88 stop_time = time.time() variable
101 print('time: {:.3f}ms'.format((stop_time - start_time) * 1000))
/external/autotest/client/tests/aiostress/
Daio-stress.c280 struct timeval stop_time; in time_since_now() local
281 gettimeofday(&stop_time, NULL); in time_since_now()
282 return time_since(start_tv, &stop_time); in time_since_now()
476 struct timeval stop_time; in read_some_events() local
489 gettimeofday(&stop_time, NULL); in read_some_events()
493 finish_io(t, event_io, event->res, &stop_time); in read_some_events()
743 struct timeval stop_time; local
748 gettimeofday(&stop_time, NULL);
749 calc_latency(&start_time, &stop_time, &t->io_submit_latency);
754 update_iou_counters(my_iocbs, ret, &stop_time);
[all …]
/external/libwebm/webvtt/
Dwebvttparser.h78 Time stop_time; member
123 Time* start_time, Time* stop_time,
Dwebvttparser.cc231 e = ParseTimingsLine(&line, arrow_pos, &cue->start_time, &cue->stop_time, in Parse()
305 Time* stop_time, Cue::settings_t* settings) { in ParseTimingsLine() argument
339 e = ParseTime(line, &idx, stop_time); in ParseTimingsLine()
/external/ltp/testcases/kernel/io/ltp-aiodio/
Daio-stress.c282 struct timeval stop_time; in time_since_now() local
283 gettimeofday(&stop_time, NULL); in time_since_now()
284 return time_since(start_tv, &stop_time); in time_since_now()
490 struct timeval stop_time; in read_some_events() local
504 gettimeofday(&stop_time, NULL); in read_some_events()
508 finish_io(t, event_io, event->res, &stop_time); in read_some_events()
759 struct timeval stop_time; local
764 gettimeofday(&stop_time, NULL);
765 calc_latency(&start_time, &stop_time, &t->io_submit_latency);
770 update_iou_counters(my_iocbs, ret, &stop_time);
[all …]
/external/tensorflow/tensorflow/python/training/
Dcheckpoint_utils.py140 stop_time = time.time() + timeout if timeout is not None else None
144 if stop_time is not None and time.time() + seconds_to_sleep > stop_time:
/external/llvm-project/lldb/source/Utility/
DTimer.cpp79 auto stop_time = steady_clock::now(); in ~Timer() local
80 auto total_dur = stop_time - m_total_start; in ~Timer()
/external/webrtc/modules/video_capture/test/
Dvideo_capture_unittest.cc228 int64_t stop_time = rtc::TimeMillis(); in TEST_F() local
233 EXPECT_LE(rtc::TimeMillis() - stop_time, 3000); in TEST_F()
/external/tensorflow/tensorflow/lite/examples/label_image/
Dlabel_image.cc359 struct timeval start_time, stop_time; in RunInference() local
367 gettimeofday(&stop_time, nullptr); in RunInference()
370 << (get_us(stop_time) - get_us(start_time)) / in RunInference()
/external/llvm-project/openmp/runtime/src/
Dkmp_stats.h664 void push_back(uint64_t start_time, uint64_t stop_time, int nest_level, in push_back() argument
677 kmp_stats_event(start_time, stop_time, nest_level, name); in push_back()
759 inline void push_event(uint64_t start_time, uint64_t stop_time, in push_event() argument
761 _event_vector.push_back(start_time, stop_time, nest_level, name); in push_event()
/external/autotest/tko/
Ddb.py213 stop_time = time.time()
214 elapsed_time = stop_time - start_time
/external/autotest/client/bin/
Djob.py1154 stop_time = time.time()
1155 total_time = stop_time - self.start_time
/external/autotest/client/common_lib/
Dutils.py908 stop_time = start_time + timeout
909 time_left = stop_time - time.time()
969 time_left = stop_time - time.time()