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

  /frameworks/native/libs/ui/
FrameStats.cpp 39 nsecs_t* timestamps = reinterpret_cast<nsecs_t*>(buffer); local
43 memcpy(timestamps, &refreshPeriodNano, timestampSize);
44 timestamps += 1;
46 memcpy(timestamps, desiredPresentTimesNano.array(), frameCount * timestampSize);
47 timestamps += frameCount;
49 memcpy(timestamps, actualPresentTimesNano.array(), frameCount * timestampSize);
50 timestamps += frameCount;
52 memcpy(timestamps, frameReadyTimesNano.array(), frameCount * timestampSize);
64 nsecs_t const* timestamps = reinterpret_cast<nsecs_t const*>(buffer); local
67 memcpy(&refreshPeriodNano, timestamps, timestampSize)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/common/
SimpleCaptureStream.java 36 public Surface bind(BufferQueue<Long> timestamps) throws InterruptedException {
39 timestamps.close();
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
FrequencyVerificationTest.java 37 long[] timestamps = {0, 1000000, 2000000, 3000000, 4000000}; // 1000Hz local
40 ISensorVerification verification = getVerification(999.0, 1001.0, timestamps);
45 verification = getVerification(850.0, 1050.0, timestamps);
50 verification = getVerification(950.0, 1150.0, timestamps);
55 verification = getVerification(850.0, 975.0, timestamps);
65 verification = getVerification(1025.0, 1150.0, timestamps);
82 long ... timestamps) {
83 Collection<TestSensorEvent> events = new ArrayList<>(timestamps.length);
84 for (long timestamp : timestamps) {
EventGapVerificationTest.java 37 // Timestamps in ns, expected in us
45 // Timestamps in ns, expected in us
46 long[] timestamps = {1000000, 2000000, 3000000, 4000000, 5000000}; local
47 runVerification(1000, timestamps, true, new int[]{});
54 // Timestamps in ns, expected in us
55 long[] timestamps = {1100000, 2050000, 2990000, 4000000, 4950000}; local
56 runVerification(1000, timestamps, true, new int[]{});
63 // Timestamps in ns, expected in us
64 long[] timestamps = {1000000, 2000000, 3000000, 5000000, 6000000}; local
65 runVerification(1000, timestamps, true, new int[]{3})
    [all...]
JitterVerificationTest.java 47 long[] timestamps = new long[SAMPLE_SIZE]; local
49 timestamps[i] = i * 100000;
52 ISensorVerification verification = getVerification(1, timestamps);
59 timestamps[i] = timestamp;
63 verification = getVerification(1, timestamps);
74 long[] timestamps = new long[]{0, 1, 2, 3, 4}; local
75 JitterVerification verification = getVerification(1, timestamps);
83 timestamps = new long[]{0, 0, 2, 4, 4};
84 verification = getVerification(1, timestamps);
92 timestamps = new long[]{0, 1, 4, 9, 16}
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
ts_parser.h 62 OMX_TICKS timestamps; member in struct:omx_time_stamp_reorder::timestamp
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
ts_parser.h 78 OMX_TICKS timestamps; member in struct:omx_time_stamp_reorder::timestamp
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
SurfaceViewPreviewTest.java 471 ArgumentCaptor<Long> timestamps = ArgumentCaptor.forClass(Long.class); local
478 timestamps.capture(),
481 // Validate timestamps: all timestamps should be larger than 0 and monotonically increase.
483 for (Long nextTimestamp : timestamps.getAllValues()) {
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraDeviceBinderTest.java 411 ArgumentCaptor<Long> timestamps = ArgumentCaptor.forClass(Long.class); local
423 timestamps.capture());
425 long timestamp = 0; // All timestamps should be larger than 0.
426 for (Long nextTimestamp : timestamps.getAllValues()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 293 Map<ResourceFile, Long> timestamps = local
310 timestamps.put(file, file.getFile().getModificationStamp());
313 return timestamps;
526 Map<ResourceFile, Long> timestamps) {
538 mTimeStamps = timestamps;
559 // Prevent checking actual file timestamps too frequently on rapid burst calls
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 41 private final long[] timestamps; field in class:GestureStroke
78 timestamps = times;
91 timestamps = times.clone();
96 return new GestureStroke(boundingBox, length, points, timestamps);
202 final long[] times = timestamps;
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
RequestBuilder.java 169 ConcurrentBufferQueue<Long> timestamps = new ConcurrentBufferQueue<>(); local
172 timestamps, mBuilder));
174 mResponseListeners.add(ResponseListeners.forTimestamps(timestamps));
  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraZslImpl.java 182 * The sensor timestamps (which may not be relative to the system time) of
262 // Clear out old timestamps from the set.
263 // We must keep old timestamps in the set a little longer (a
269 ArrayList<Long> timestamps = new ArrayList<Long>(mCapturedImageTimestamps); local
270 Collections.sort(timestamps);
271 for (int i = 0; i < timestamps.size()
273 mCapturedImageTimestamps.remove(timestamps.get(i));
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 2034 Timestamp[] timestamps = { new Timestamp(2007, 10, 17, 19, 06, 50, 23), local
2109 Timestamp[] timestamps = { new Timestamp(2007, 10, 17, 19, 06, 50, 23), local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 184 List<Long> timestamps = new ArrayList<Long>(); local
185 decodeToMemory(res, RESET_MODE_NONE, CONFIG_MODE_NONE, -1, timestamps);
187 for (int i = 0; i < timestamps.size(); i++) {
188 Long thisTime = timestamps.get(i);
262 assertTrue("extractor timestamps were ordered, wrong test file?", inputoutoforder);
607 int eossample, List<Long> timestamps) throws IOException {
724 if (timestamps != null) {
725 timestamps.add(info.presentationTimeUs);
748 if (timestamps != null) {
749 timestamps.clear()
1450 ArrayList<Long> timestamps = new ArrayList<Long>(); local
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.frameworkadmin.equinox_1.0.500.v20130327-2119.jar 
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.frameworkadmin.equinox_1.0.500.v20130327-2119.jar 
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar 
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-core-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 650 milliseconds