/external/linux-kselftest/tools/testing/selftests/powerpc/benchmarks/ |
D | mmap_bench.c | 19 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()
|
D | futex_bench.c | 22 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/ |
D | 10-1.c | 41 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()
|
D | 11-1.c | 41 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/ |
D | lookahead.h | 22 int64_t ts_end; member 60 int64_t ts_start, int64_t ts_end, unsigned int flags,
|
D | lookahead.c | 92 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()
|
D | onyx_if.c | 4914 *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()
|
D | firstpass.c | 797 fps.duration = (double)(cpi->source->ts_end - cpi->source->ts_start); in vp8_first_pass()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_lookahead.h | 31 int64_t ts_end; member 80 int64_t ts_start, int64_t ts_end,
|
D | vp9_lookahead.c | 86 int64_t ts_start, int64_t ts_end, in vp9_lookahead_push() argument 185 buf->ts_end = ts_end; in vp9_lookahead_push()
|
D | vp9_svc_layercontext.c | 766 cpi->svc.empty_frame.ts_end = buf->ts_end; in vp9_svc_start_frame()
|
D | vp9_encoder.c | 4708 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;
|
D | vp9_firstpass.c | 1486 fps.duration = VPXMAX(1.0, (double)(source->ts_end - source->ts_start)); in vp9_first_pass()
|
/external/ltp/testcases/realtime/lib/ |
D | librttest.c | 413 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/ |
D | strace_profiler.py | 94 ts_end = ts_begin + int(1000000 * float(m.group('dur'))) 131 'ts': ts_end,
|
/external/ltp/testcases/realtime/include/ |
D | librttest.h | 285 void ts_minus(struct timespec *ts_end, struct timespec *ts_start, struct timespec *ts_delta);
|