OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:curts
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.cpp
252
int64_t
curTS
;
254
from->findInt64(kKeyTime, &
curTS
);
256
mInitialTimeStampUs =
curTS
;
/frameworks/wilhelm/tests/sandbox/
playbq.c
497
struct timespec
curTs
;
498
clock_gettime(CLOCK_MONOTONIC, &
curTs
);
499
elapsedNs += (
curTs
.tv_sec - prevTs.tv_sec) * 1000000000 +
501
(
curTs
.tv_nsec - prevTs.tv_nsec);
502
prevTs =
curTs
;
playbq.cpp
497
struct timespec
curTs
;
498
clock_gettime(CLOCK_MONOTONIC, &
curTs
);
499
elapsedNs += (
curTs
.tv_sec - prevTs.tv_sec) * 1000000000 +
501
(
curTs
.tv_nsec - prevTs.tv_nsec);
502
prevTs =
curTs
;
Completed in 281 milliseconds