HomeSort by relevance Sort by last modified time
    Searched refs:mPut (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/rs/
rsLocklessFifo.cpp 60 mPut = mBuffer;
72 if (mPut >= mGet) {
73 freeSpace = mEnd - mPut;
75 freeSpace = mGet - mPut;
85 uint32_t p = android_atomic_acquire_load((int32_t *)&mPut);
99 return mPut + 4;
107 reinterpret_cast<uint16_t *>(mPut)[0] = command;
108 reinterpret_cast<uint16_t *>(mPut)[1] = sizeInBytes;
111 android_atomic_add(s, (int32_t *)&mPut);
130 while (mPut != mGet)
    [all...]
rsLocklessFifo.h 45 uint8_t * volatile mPut;

Completed in 1642 milliseconds