Searched refs:mFront (Results 1 - 3 of 3) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
H A DPipeShort.java23 private int mFront; field in class:PipeShort
69 int avail = rear - mFront;
72 int oldFront = mFront;
73 mFront = rear - mMaxValues + (mMaxValues >> 4);
74 mBytesOverrun += mFront - oldFront;
97 int front = mFront & (mMaxValues - 1);
114 mFront += red;
120 mRear = mFront;
121 mVolatileRear = mFront;
/cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
H A Dfifo.h42 volatile int32_t mFront; // frame index of first frame slot available to read, or read index member in struct:audio_utils_fifo
H A Dfifo.c38 fifo->mFront = 0;
46 // Return a new index as the sum of an old index (either mFront or mRear) and a specified increment.
85 int32_t front = android_atomic_acquire_load(&fifo->mFront);
113 int32_t front = fifo->mFront;
131 android_atomic_release_store(audio_utils_fifo_sum(fifo, fifo->mFront, availToRead),
132 &fifo->mFront);

Completed in 152 milliseconds