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

  /frameworks/av/services/audioflinger/
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 72 size_t rear = mRear & (mMaxFrames - 1); local
73 size_t part1 = mMaxFrames - rear;
78 memcpy((char *) mBuffer + (rear << mBitShift), buffer, part1 << mBitShift);
79 if (CC_UNLIKELY(rear + part1 == mMaxFrames)) {
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndcommon.c 55 if (con->hinsi.rear != NULL) {
64 if (*(con->hinsi.rear + (hinsiR / 8)) & (0x80 >> (hinsiR % 8))) {
ndapi.c 700 cursor->cond.hinsi.rear = NULL;
  /frameworks/compile/mclinker/lib/LD/
Layout.cpp 121 /// 1. add a new range <pInputHdr, previous rear fragment>
151 // set up previous rear of the range.
326 llvm::MCFragment* rear = getRear(pRange);
327 if (NULL == rear)
330 return getFragmentRef(*front, *rear, pOffset);
342 llvm::MCFragment* rear = &pRear; local
344 if (!hasLayoutOffset(*rear)) {
346 setFragmentLayoutOrder(rear);
347 setFragmentLayoutOffset(rear);
353 // from front to rear, find the offset which is as large as possibl
    [all...]
  /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/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...]
  /external/llvm/test/MC/MBlaze/
mblaze_special.s 62 mfs r1, rear
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_lib.h 196 NJ_UINT8 *rear; member in struct:__anon19681::__anon19682

Completed in 398 milliseconds