OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:txRearNext
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/jni/audio_loopback/
sles.cpp
200
SLuint32
txRearNext
= pSles->txRear+1;
201
if (
txRearNext
> pSles->txBufCount) {
202
txRearNext
= 0;
204
assert(
txRearNext
!= pSles->txFront);
206
pSles->txRear =
txRearNext
;
424
SLuint32
txRearNext
= pSles->txRear + 1;
425
if (
txRearNext
> pSles->txBufCount) {
426
txRearNext
= 0;
428
assert(
txRearNext
!= pSles->txFront);
430
pSles->txRear =
txRearNext
;
[
all
...]
/external/drrickorang/LoopbackApp/app/src/main/cpp/
sles.cpp
315
SLuint32
txRearNext
= pSles->txRear + 1;
316
if (
txRearNext
> pSles->txBufCount) {
317
txRearNext
= 0;
319
ASSERT(
txRearNext
!= pSles->txFront);
321
pSles->txRear =
txRearNext
;
711
SLuint32
txRearNext
= pSles->txRear + 1;
712
if (
txRearNext
> pSles->txBufCount) {
713
txRearNext
= 0;
715
ASSERT(
txRearNext
!= pSles->txFront);
717
pSles->txRear =
txRearNext
;
[
all
...]
Completed in 2381 milliseconds