Lines Matching refs:SLuint32
34 static SLuint32 rxBufCount = 2; // -r#
35 static SLuint32 txBufCount = 2; // -t#
36 static SLuint32 bufSizeInFrames = 512; // -f#
37 static SLuint32 channels = 1; // -c#
38 static SLuint32 sampleRate = 44100; // -s#
39 static SLuint32 exitAfterSeconds = 60; // -e#
40 static SLuint32 freeBufCount = 0; // calculated
41 static SLuint32 bufSizeInBytes = 0; // calculated
49 static SLuint32 rxFront; // oldest recording
50 static SLuint32 rxRear; // next to be recorded
51 static SLuint32 txFront; // oldest playing
52 static SLuint32 txRear; // next to be played
53 static SLuint32 freeFront; // oldest free
54 static SLuint32 freeRear; // next to be freed
86 SLuint32 txRearNext = txRear+1; in recorderCallback()
106 SLuint32 rxRearNext = rxRear+1; in recorderCallback()
143 SLuint32 rxRearNext = rxRear+1; in playerCallback()
159 SLuint32 freeRearNext = freeRear+1; in playerCallback()
385 SLuint32 rxRearNext = rxRear + 1; in main()