Lines Matching refs:SLuint32
37 static SLuint32 rxBufCount = 2; // -r#
38 static SLuint32 txBufCount = 2; // -t#
39 static SLuint32 bufSizeInFrames = 240; // -f#
40 static SLuint32 channels = 1; // -c#
41 static SLuint32 sampleRate = 48000; // -s#
42 static SLuint32 exitAfterSeconds = 60; // -e#
43 static SLuint32 freeBufCount = 0; // calculated
44 static SLuint32 bufSizeInBytes = 0; // calculated
52 static SLuint32 rxFront; // oldest recording
53 static SLuint32 rxRear; // next to be recorded
54 static SLuint32 txFront; // oldest playing
55 static SLuint32 txRear; // next to be played
56 static SLuint32 freeFront; // oldest free
57 static SLuint32 freeRear; // next to be freed
114 SLuint32 rxRearNext = rxRear+1; in recorderCallback()
130 SLuint32 txRearNext = txRear+1; in recorderCallback()
150 SLuint32 rxRearNext = rxRear+1; in recorderCallback()
211 SLuint32 txRearNext = txRear+1; in playerCallback()
227 SLuint32 rxRearNext = rxRear+1; in playerCallback()
243 SLuint32 freeRearNext = freeRear+1; in playerCallback()
469 SLuint32 txRearNext = txRear + 1; in main()
533 SLuint32 rxRearNext = rxRear + 1; in main()