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

  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
fifo.h 42 volatile int32_t mFront; // frame index of first frame slot available to read, or read index
  /external/drrickorang/LoopbackApp/app/src/main/jni/audio_utils/
fifo.h 42 volatile int32_t mFront; // frame index of first frame slot available to read, or read index
  /frameworks/native/services/surfaceflinger/
LayerRejecter.h 37 Layer::State &mFront;
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
PipeShort.java 27 private int mFront; // writer's current position
34 * IMPORTANT: Since a signed integer is used to store mRear and mFront, their values should not
35 * exceed 2^31 - 1, or else overflows happens and the positions of read and mFront becomes
89 int front = mFront & (mMaxValues - 1);
110 mFront += read;
119 int avail = rear - mFront;
122 int oldFront = mFront;
123 mFront = rear - mMaxValues + (mMaxValues >> 4);
124 mSamplesOverrun += mFront - oldFront;
135 mRear = mFront;
    [all...]
PipeByteBuffer.java 37 private int mFront = 0; // reader's current position
50 * IMPORTANT: Since a signed integer is used to store rear and mFront, their values should not
51 * exceed 2^31 - 1, or else overflows happens and the positions of read and mFront becomes
66 * Note: rear and mFront are keep in terms of number of short instead of number of byte.
80 int avail = availableToRead(rear, mFront);
91 int front = mFront & (mMaxValues - 1);
109 mFront += read;
131 int oldFront = mFront;
132 mFront = rear - mMaxValues + (mMaxValues >> 5);
133 mSamplesOverrun += mFront - oldFront
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
FlipDrawable.java 45 protected final Drawable mFront;
56 * From 0f to END_VALUE. Determines the flip progress between mFront and mBack. 0f means
57 * mFront is fully shown, while END_VALUE means mBack is fully shown.
92 mFront = front;
95 mFront.setCallback(this);
123 mFront.setBounds(0, 0, 0, 0);
126 mFront.setBounds(bounds);
138 final Drawable inner = getSideShown() /* == front */ ? mFront : mBack;
168 mFront.setAlpha(alpha);
174 mFront.setColorFilter(cf)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 23 private int mFront;
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;
  /frameworks/av/include/private/media/
AudioTrackShared.h 59 volatile int32_t mFront; // read by consumer (output: server, input: client)
62 // server notices and discards all data between mFront and mRear
484 int32_t front = mCblk->u.mStreaming.mFront;
485 android_atomic_release_store(rear, &mCblk->u.mStreaming.mFront);
543 // cblk->u.mStreaming.mFront, ServerProxy::mFlush and ServerProxy::mFlushed will be modified
  /frameworks/wilhelm/src/
itfstruct.h 140 SLVec3D mFront;
165 SLVec3D mFront;
239 BufferHeader *mFront, *mRear;
680 AdvancedBufferHeader *mFront, *mRear;

Completed in 721 milliseconds