Searched refs:noteOnCache (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRealTimeSequencer.java1426 private int[] noteOnCache; // bit-mask of notes that are currently on field in class:RealTimeSequencer.DataPump
1446 noteOnCache = new int[128];
1542 noteOnCache[i] = 0;
1551 if ((noteOnCache[i] & channelMask) != 0) {
1552 noteOnCache[i] ^= channelMask;
1610 * in noteOnCache array.
1642 if ((noteOnCache[note] & bit) != 0) {
1646 noteOnCache[note] &= (0xFFFF ^ bit);
1872 // note off - clear the bit in the noteOnCache array
1874 noteOnCache[not
[all...]

Completed in 778 milliseconds