Home
last modified time | relevance | path

Searched refs:NANOS_PER_MILLI (Results 1 – 3 of 3) sorted by relevance

/cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
DFakeSensorOperation.java31 private static final int NANOS_PER_MILLI = 1000000; field in FakeSensorOperation
63 Thread.sleep(delayNs / NANOS_PER_MILLI, (int) (delayNs % NANOS_PER_MILLI)); in execute()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DSensorSynchronizationTestActivity.java32 private final double NANOS_PER_MILLI = 1e6; field in SensorSynchronizationTestActivity
111 (maxTimestamp - minTimestamp) / NANOS_PER_MILLI; in analyzeData()
115 (accMovementTimestamp - minTimestamp) / NANOS_PER_MILLI, in analyzeData()
116 (magMovementTimestamp - minTimestamp) / NANOS_PER_MILLI, in analyzeData()
117 (gyrMovementTimestamp - minTimestamp) / NANOS_PER_MILLI)); in analyzeData()
/cts/tests/sensor/src/android/hardware/cts/helpers/
DSensorCtsHelper.java33 private static final long NANOS_PER_MILLI = 1000000; field in SensorCtsHelper
168 Thread.sleep(durationNs / NANOS_PER_MILLI, (int) (durationNs % NANOS_PER_MILLI)); in sleep()