Home
last modified time | relevance | path

Searched refs:oldIndex (Results 1 – 1 of 1) sorted by relevance

/RvlSDK-3.1.4/build/demos/mididemo/src/
Dmidiqueue.c35 static int proceedIndex(int oldIndex);
236 static int proceedIndex(int oldIndex) in proceedIndex() argument
238 if((0<=oldIndex) && (oldIndex < RINGBUF_SIZE-1)) in proceedIndex()
240 return oldIndex+1; in proceedIndex()
242 else if(oldIndex == RINGBUF_SIZE-1) in proceedIndex()
248 OSReport("Invalid index (out of range): %d", oldIndex); in proceedIndex()