Home
last modified time | relevance | path

Searched refs:NANOS_PER_SECOND (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/nativemedia/aaudio/src/
Dtest_aaudio.h24 #define NANOS_PER_SECOND (NANOS_PER_MILLISECOND * MILLIS_PER_SECOND) macro
Dutils.cpp34 return (time.tv_sec * NANOS_PER_SECOND) + time.tv_nsec; in getNanoseconds()
Dtest_aaudio.cpp224 timeoutNanos = 100 * (NANOS_PER_SECOND * framesPerBurst() / in TEST_P()
Dtest_aaudio_callback.cpp50 int64_t calculatedDeltaNanos = deltaFrames * NANOS_PER_SECOND / sampleRate; in measureLatency()
/cts/tests/tests/media/src/android/media/cts/
DAudioTrackSurroundTest.java62 private final static long NANOS_PER_SECOND = NANOS_PER_MILLISECOND * MILLIS_PER_SECOND; field in AudioTrackSurroundTest
305 double measuredRate = elapsedFrames * (double) NANOS_PER_SECOND / elapsedNanos; in calculateSampleRate()
DAudioTrackLatencyTest.java55 private final static long NANOS_PER_SECOND = NANOS_PER_MILLISECOND * MILLIS_PER_SECOND; field in AudioTrackLatencyTest
338 long timeDelta = framesPending * NANOS_PER_SECOND / track.getSampleRate(); in checkOutputLowLatency()
DAudioRecordTest.java1242 final long NANOS_PER_SECOND = 1000000000; in verifyContinuousTimestamps() local
1243 final long timeByFrames = frameDiff * NANOS_PER_SECOND / sampleRate; in verifyContinuousTimestamps()
DAudioTrackTest.java2092 final long NANOS_PER_SECOND = 1000000000; in doTestTimestamp() local
2093 final long closeTimeNs = frameCount * 2 * NANOS_PER_SECOND / sampleRate; in doTestTimestamp()