Home
last modified time | relevance | path

Searched refs:ts_end (Results 1 – 16 of 16) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/powerpc/benchmarks/
Dmmap_bench.c19 struct timespec ts_start, ts_end; in test_mmap() local
31 clock_gettime(CLOCK_MONOTONIC, &ts_end); in test_mmap()
33 …printf("time = %.6f\n", ts_end.tv_sec - ts_start.tv_sec + (ts_end.tv_nsec - ts_start.tv_nsec) / 1e… in test_mmap()
Dfutex_bench.c22 struct timespec ts_start, ts_end; in test_futex() local
32 clock_gettime(CLOCK_MONOTONIC, &ts_end); in test_futex()
34 …printf("time = %.6f\n", ts_end.tv_sec - ts_start.tv_sec + (ts_end.tv_nsec - ts_start.tv_nsec) / 1e… in test_futex()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/
D10-1.c41 struct timespec ts_start, ts_end; in main()
92 if (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts_end) != 0) { in main()
97 if (abs(ts_end.tv_sec - ts_start.tv_sec - TIMERSEC) <= ACCEPTABLEDELTA) { in main()
104 (int)ts_end.tv_sec, (int)ts_start.tv_sec, in main()
D11-1.c41 struct timespec ts_start, ts_end; in main()
92 if (clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts_end) != 0) { in main()
97 if (abs(ts_end.tv_sec - ts_start.tv_sec - TIMERSEC) <= ACCEPTABLEDELTA) { in main()
104 (int)ts_end.tv_sec, (int)ts_start.tv_sec, in main()
/external/libvpx/libvpx/vp8/encoder/
Dlookahead.h22 int64_t ts_end; member
60 int64_t ts_start, int64_t ts_end, unsigned int flags,
Dlookahead.c92 int64_t ts_start, int64_t ts_end, unsigned int flags, in vp8_lookahead_push() argument
142 buf->ts_end = ts_end; in vp8_lookahead_push()
Donyx_if.c4914 *time_end = cpi->source->ts_end; in vp8_get_compressed_data()
4945 this_duration = cpi->source->ts_end - cpi->source->ts_start; in vp8_get_compressed_data()
4950 this_duration = cpi->source->ts_end - cpi->last_end_time_stamp_seen; in vp8_get_compressed_data()
4968 interval = (double)(cpi->source->ts_end - cpi->first_time_stamp_ever); in vp8_get_compressed_data()
5012 cpi->last_end_time_stamp_seen = cpi->source->ts_end; in vp8_get_compressed_data()
Dfirstpass.c797 fps.duration = (double)(cpi->source->ts_end - cpi->source->ts_start); in vp8_first_pass()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_lookahead.h31 int64_t ts_end; member
80 int64_t ts_start, int64_t ts_end,
Dvp9_lookahead.c86 int64_t ts_start, int64_t ts_end, in vp9_lookahead_push() argument
185 buf->ts_end = ts_end; in vp9_lookahead_push()
Dvp9_svc_layercontext.c766 cpi->svc.empty_frame.ts_end = buf->ts_end; in vp9_svc_start_frame()
Dvp9_encoder.c4708 this_duration = source->ts_end - source->ts_start;
4714 this_duration = source->ts_end - cpi->last_end_time_stamp_seen;
4729 (double)(source->ts_end - cpi->first_time_stamp_ever), 10000000.0);
4738 cpi->last_end_time_stamp_seen = source->ts_end;
5173 *time_end = source->ts_end;
Dvp9_firstpass.c1486 fps.duration = VPXMAX(1.0, (double)(source->ts_end - source->ts_start)); in vp9_first_pass()
/external/ltp/testcases/realtime/lib/
Dlibrttest.c413 void ts_minus(struct timespec *ts_end, struct timespec *ts_start, in ts_minus() argument
416 if (ts_end == NULL || ts_start == NULL || ts_delta == NULL) { in ts_minus()
422 ts_delta->tv_sec = ts_end->tv_sec - ts_start->tv_sec; in ts_minus()
423 ts_delta->tv_nsec = ts_end->tv_nsec - ts_start->tv_nsec; in ts_minus()
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dstrace_profiler.py94 ts_end = ts_begin + int(1000000 * float(m.group('dur')))
131 'ts': ts_end,
/external/ltp/testcases/realtime/include/
Dlibrttest.h285 void ts_minus(struct timespec *ts_end, struct timespec *ts_start, struct timespec *ts_delta);