Searched defs:ts_end (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dlookahead.h22 int64_t ts_end; member in struct:lookahead_entry
55 * \param[in] ts_end Timestamp for the end of this frame
60 int64_t ts_start, int64_t ts_end, unsigned int flags,
H A Dlookahead.c92 int64_t ts_start, int64_t ts_end, unsigned int flags,
142 buf->ts_end = ts_end;
91 vp8_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src, int64_t ts_start, int64_t ts_end, unsigned int flags, unsigned char *active_map) argument
/external/linux-kselftest/tools/testing/selftests/powerpc/benchmarks/
H A Dfutex_bench.c22 struct timespec ts_start, ts_end; local
32 clock_gettime(CLOCK_MONOTONIC, &ts_end);
34 printf("time = %.6f\n", ts_end.tv_sec - ts_start.tv_sec + (ts_end.tv_nsec - ts_start.tv_nsec) / 1e9);
H A Dmmap_bench.c19 struct timespec ts_start, ts_end; local
31 clock_gettime(CLOCK_MONOTONIC, &ts_end);
33 printf("time = %.6f\n", ts_end.tv_sec - ts_start.tv_sec + (ts_end.tv_nsec - ts_start.tv_nsec) / 1e9);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_lookahead.h31 int64_t ts_end; member in struct:lookahead_entry
75 * \param[in] ts_end Timestamp for the end of this frame
80 int64_t ts_start, int64_t ts_end,
H A Dvp9_lookahead.c86 int64_t ts_start, int64_t ts_end,
185 buf->ts_end = ts_end;
85 vp9_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src, int64_t ts_start, int64_t ts_end, int use_highbitdepth, vpx_enc_frame_flags_t flags) argument
/external/ltp/testcases/realtime/lib/
H A Dlibrttest.c413 void ts_minus(struct timespec *ts_end, struct timespec *ts_start, argument
416 if (ts_end == NULL || ts_start == NULL || ts_delta == NULL) {
422 ts_delta->tv_sec = ts_end->tv_sec - ts_start->tv_sec;
423 ts_delta->tv_nsec = ts_end->tv_nsec - ts_start->tv_nsec;

Completed in 177 milliseconds