HomeSort by relevance Sort by last modified time
    Searched defs:prevTimestamp (Results 1 - 6 of 6) sorted by null

  /system/core/libutils/
SystemClock.cpp 81 int64_t prevTimestamp = *prevTimestampPtr;
84 if (timestamp < prevTimestamp) {
92 prevTimestamp, gettime_method_names[prevMethod],
115 static volatile int64_t prevTimestamp;
133 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod, METHOD_IOCTL);
141 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
150 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
  /cts/tests/camera/src/android/hardware/camera2/cts/
BurstCaptureTest.java 297 long prevTimestamp = -1;
320 if (prevTimestamp != -1) {
321 long frameDuration = timestamp - prevTimestamp;
328 prevTimestamp = timestamp;
SurfaceViewPreviewTest.java 248 measureMeanFrameInterval(resultListener, FRAMES_FOR_AVERAGING, /*prevTimestamp*/ 0);
268 measureMeanFrameInterval(resultListener, resultsReceived, /*prevTimestamp*/ 0);
298 long prevTimestamp = result.get(CaptureResult.SENSOR_TIMESTAMP);
306 measureMeanFrameInterval(resultListener, MAX_IMAGES_TO_PREPARE*2, prevTimestamp);
423 * provided capture listener. If prevTimestamp is positive, it is used for the first interval
430 long prevTimestamp) throws Exception {
433 int measurementCount = frameCount - ((prevTimestamp > 0) ? 0 : 1);
438 if (prevTimestamp > 0) {
439 long interval = timestamp - prevTimestamp;
443 prevTimestamp = timestamp
    [all...]
  /external/opencv3/samples/cpp/
calibration.cpp 314 clock_t prevTimestamp = 0;
491 (!capture.isOpened() || clock() - prevTimestamp > delay*1e-3*CLOCKS_PER_SEC) )
494 prevTimestamp = clock();
  /external/opencv3/samples/cpp/tutorial_code/calib3d/camera_calibration/
camera_calibration.cpp 254 clock_t prevTimestamp = 0;
320 (!s.inputCapture.isOpened() || clock() - prevTimestamp > s.delay*1e-3*CLOCKS_PER_SEC) )
323 prevTimestamp = clock();
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4lib_int.h 262 uint32 prevTimestamp[BITRATE_AVERAGE_WINDOW];

Completed in 818 milliseconds