Lines Matching refs:mBufferArray
270 thiz->mFront = &thiz->mBufferArray[0];
271 thiz->mRear = &thiz->mBufferArray[0];
361 if ((newRear = oldRear + 1) == &thiz->mBufferArray[thiz->mNumBuffers + 1]) {
362 newRear = thiz->mBufferArray;
482 thiz->mBufferArray = NULL;
492 if (NULL != thiz->mBufferArray) {
493 free(thiz->mBufferArray);
494 thiz->mBufferArray = NULL;
529 SL_LOGI(" mBufferArray=%p, mFront=%p (%u), mRear=%p (%u)",
530 thiz->mBufferArray,
531 thiz->mFront, thiz->mFront - thiz->mBufferArray,
532 thiz->mRear, thiz->mRear - thiz->mBufferArray);
536 SLuint32 i = hdr - thiz->mBufferArray;
584 if (++hdr == &thiz->mBufferArray[thiz->mNumBuffers + 1]) {
585 hdr = thiz->mBufferArray;