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

  /frameworks/av/media/libnbaio/
Pipe.cpp 50 size_t rear = mRear & (mMaxFrames - 1); local
51 size_t written = mMaxFrames - rear;
55 memcpy((char *) mBuffer + (rear << mBitShift), buffer, written << mBitShift);
56 if (CC_UNLIKELY(rear + written == mMaxFrames)) {
57 if (CC_UNLIKELY((count -= written) > rear)) {
58 count = rear;
PipeReader.cpp 48 int32_t rear = android_atomic_acquire_load(&mPipe.mRear); local
50 size_t avail = rear - mFront;
54 mFront = rear - mPipe.mMaxFrames + (mPipe.mMaxFrames >> 4);
80 // We could re-read the rear pointer here to detect the corruption, but why bother?
MonoPipe.cpp 109 size_t rear = mRear & (mMaxFrames - 1); local
110 size_t part1 = mMaxFrames - rear;
115 memcpy((char *) mBuffer + (rear << mBitShift), buffer, part1 << mBitShift);
116 if (CC_UNLIKELY(rear + part1 == mMaxFrames)) {
  /frameworks/compile/mclinker/lib/MC/
SymbolCategory.cpp 142 size_t rear; local
149 rear = current->end - 1;
150 std::swap(m_OutputSymbols[pos], m_OutputSymbols[rear]);
151 pos = rear;
  /frameworks/compile/mclinker/lib/LD/
Layout.cpp 132 /// 1. add a new range <pInputHdr, previous rear fragment>
153 // set up previous rear of the range.
327 Fragment* rear = getRear(pRange);
328 if (NULL == rear)
331 return getFragmentRef(*front, *rear, pOffset);
341 Fragment* rear = &pRear; local
343 if (!hasLayoutOffset(*rear)) {
345 setFragmentLayoutOrder(rear);
346 setFragmentLayoutOffset(rear);
352 // from front to rear, find the offset which is as large as possibl
    [all...]
  /frameworks/wilhelm/src/itf/
IOutputMixExt.c 275 const BufferHeader *oldFront, *newFront, *rear; local
277 rear = bufferQueue->mRear;
279 assert(oldFront != rear);
287 if (newFront != rear) {
  /external/svox/pico/lib/
picodata.c 65 picoos_uint16 rear; /* next free position to write */ member in struct:picodata_char_buffer
91 this->rear = 0;
149 this->buf[this->rear++] = ch;
150 this->rear %= this->size;
302 this->buf[this->rear++] = (picoos_char)buf[i];
303 this->rear %= this->size;
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_lib.h 196 NJ_UINT8 *rear; member in struct:__anon21425::__anon21426

Completed in 1542 milliseconds