Home | History | Annotate | Download | only in audioflinger

Lines Matching defs:bounds

87     uint32_t bounds = 0;
197 bounds = 0;
583 // advance the FIFO queue bounds
584 size_t i = bounds & (dumpState->mSamplingN - 1);
585 bounds = (bounds & 0xFFFF0000) | ((bounds + 1) & 0xFFFF);
587 bounds += 0x10000;
588 } else if (!(bounds & (dumpState->mSamplingN - 1))) {
634 dumpState->mBounds = bounds;
685 // sample arrays aren't accessed atomically with respect to the bounds,
761 uint32_t bounds = mBounds;
762 uint32_t newestOpen = bounds & 0xFFFF;
763 uint32_t oldestClosed = bounds >> 16;