Home | History | Annotate | Download | only in lib_src

Lines Matching defs:note

48 /* length of 32nd note in 1/256ths of a msec for 63 BPM tempo */
57 /* note used for rest */
89 /* lookup table for note values */
267 EAS_U8 note;
284 /* check for end of note */
285 if (pData->note)
287 /* stop the note */
288 VMStopNote(pEASData->pVoiceMgr, pData->pSynth, RTTTL_CHANNEL, pData->note, 0);
289 pData->note = 0;
302 note = 0;
314 if (!note)
342 /* still have a note to process */
377 /* must be a note */
380 note = noteTable[1];
403 /* duration comes before note */
404 if (!note)
411 /* octave comes after note */
419 /* note or rest */
422 note = noteTable[c - 'a'];
427 note = RTTTL_REST;
430 /* dotted note */
440 if (note)
441 note++;
445 else if ((c == ',') && note)
448 /* handle note events */
449 if (note != RTTTL_REST)
452 /* save note and start it */
453 pData->note = note + octave;
455 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, RTTTL_CHANNEL, pData->note, RTTTL_VELOCITY);
457 /* determine note length */
482 /* next event is at end of this note */
611 pData->note = 0;
987 pData->note = 0;