Home
last modified time | relevance | path

Searched refs:iNote (Results 1 – 25 of 41) sorted by relevance

12

/dports/audio/padthv1-lv2/padthv1-padthv1_0_9_23/src/
H A Dpadthv1widget_keybd.cpp202 int k = (iNote % 12); in notePath()
231 if (iNote < m_iNoteLow || iNote > m_iNoteHigh) in noteOn()
249 if (iNote < m_iNoteLow || iNote > m_iNoteHigh) in noteOff()
302 if (iNote < m_iNoteLow || iNote > m_iNoteHigh || iNote == m_iNoteOn) in dragNoteOn()
309 m_iNoteOn = iNote; in dragNoteOn()
347 int k = (iNote % 12); in noteAt()
352 ++iNote; in noteAt()
354 --iNote; in noteAt()
358 return iNote; in noteAt()
733 if (iNote < MIN_NOTE || iNote > MAX_NOTE) in noteToolTip()
[all …]
H A Dpadthv1widget_keybd.h64 void noteOn(int iNote); in AES_ecb_encrypt()
65 void noteOff(int iNote); in AES_ecb_encrypt()
75 void noteOnClicked(int iNote, int iVelocity); in AES_ecb_encrypt()
92 QRect noteRect(int iNote, bool bOn = false) const; in AES_ecb_encrypt()
93 QPainterPath notePath(int iNote, bool bOn = false) const; in AES_ecb_encrypt()
126 QString noteName(int iNote) const; in AES_ecb_encrypt()
H A Dpadthv1widget_status.cpp117 void padthv1widget_status::midiInNote ( int iNote, int iVelocity ) in midiInNote() argument
120 m_pKeybd->noteOn(iNote); in midiInNote()
122 m_pKeybd->noteOff(iNote); in midiInNote()
/dports/audio/samplv1-lv2/samplv1-samplv1_0_9_23/src/
H A Dsamplv1widget_keybd.cpp202 int k = (iNote % 12); in notePath()
231 if (iNote < m_iNoteLow || iNote > m_iNoteHigh) in noteOn()
249 if (iNote < m_iNoteLow || iNote > m_iNoteHigh) in noteOff()
302 if (iNote < m_iNoteLow || iNote > m_iNoteHigh || iNote == m_iNoteOn) in dragNoteOn()
309 m_iNoteOn = iNote; in dragNoteOn()
347 int k = (iNote % 12); in noteAt()
352 ++iNote; in noteAt()
354 --iNote; in noteAt()
358 return iNote; in noteAt()
733 if (iNote < MIN_NOTE || iNote > MAX_NOTE) in noteToolTip()
[all …]
H A Dsamplv1widget_keybd.h64 void noteOn(int iNote);
65 void noteOff(int iNote);
75 void noteOnClicked(int iNote, int iVelocity);
92 QRect noteRect(int iNote, bool bOn = false) const;
93 QPainterPath notePath(int iNote, bool bOn = false) const;
126 QString noteName(int iNote) const;
H A Dsamplv1widget_status.cpp117 void samplv1widget_status::midiInNote ( int iNote, int iVelocity ) in midiInNote() argument
120 m_pKeybd->noteOn(iNote); in midiInNote()
122 m_pKeybd->noteOff(iNote); in midiInNote()
/dports/audio/synthv1-lv2/synthv1-synthv1_0_9_23/src/
H A Dsynthv1widget_keybd.cpp202 int k = (iNote % 12); in notePath()
231 if (iNote < m_iNoteLow || iNote > m_iNoteHigh) in noteOn()
249 if (iNote < m_iNoteLow || iNote > m_iNoteHigh) in noteOff()
302 if (iNote < m_iNoteLow || iNote > m_iNoteHigh || iNote == m_iNoteOn) in dragNoteOn()
309 m_iNoteOn = iNote; in dragNoteOn()
347 int k = (iNote % 12); in noteAt()
352 ++iNote; in noteAt()
354 --iNote; in noteAt()
358 return iNote; in noteAt()
733 if (iNote < MIN_NOTE || iNote > MAX_NOTE) in noteToolTip()
[all …]
H A Dsynthv1widget_keybd.h64 void noteOn(int iNote); in getForUpdate_cf_conflict()
65 void noteOff(int iNote); in getForUpdate_cf_conflict()
75 void noteOnClicked(int iNote, int iVelocity); in getForUpdate_cf_conflict()
92 QRect noteRect(int iNote, bool bOn = false) const; in getForUpdate_cf_conflict()
93 QPainterPath notePath(int iNote, bool bOn = false) const; in getForUpdate_cf_conflict()
126 QString noteName(int iNote) const; in getForUpdate_cf_conflict()
H A Dsynthv1widget_status.cpp117 void synthv1widget_status::midiInNote ( int iNote, int iVelocity ) in midiInNote() argument
120 m_pKeybd->noteOn(iNote); in midiInNote()
122 m_pKeybd->noteOff(iNote); in midiInNote()
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/ext/midilib/src/
H A Dmidiutil.c571 char *muGetNameFromNote(char *pStr, int iNote) in muGetNameFromNote() argument
575 if (iNote<0 || iNote>127) in muGetNameFromNote()
578 sprintf(pStr, "%s%d", szNoteName[iNote%12], ((iNote-MIDI_NOTE_C0)/12)); in muGetNameFromNote()
583 float muGetFreqFromNote(int iNote) in muGetFreqFromNote() argument
585 int oct = iNote/12-5; in muGetFreqFromNote()
588 if (iNote<0 || iNote>127) return 0; in muGetFreqFromNote()
590 freq = fFreqlist[iNote%12]; in muGetFreqFromNote()
606 int iNote, iBestNote=0; in muGetNoteFromFreq() local
609 for(iNote=0;iNote<127;++iNote) in muGetNoteFromFreq()
611 f = muGetFreqFromNote(iNote); in muGetNoteFromFreq()
[all …]
H A Dm2rtttl.c59 typedef void (*cb_Output)(int iNote, int iVol, int iTimeMS, CONVERT_PREFS *pPrefs);
109 void outStdout(int iNote, int iVol, int iDeltaTime, CONVERT_PREFS *pPrefs) in outStdout() argument
130 printf("%d%s%d", iLen, pNoteNames[iNote%12], (iNote/12)-3); in outStdout()
135 void outSMLCCode(int iNote, int iVol, int iDeltaTime, CONVERT_PREFS *pPrefs) in outSMLCCode() argument
140 void outSpeaker(int iNote, int iVol, int iDeltaTime, CONVERT_PREFS *pPrefs) in outSpeaker() argument
146 if (iNote == 0) in outSpeaker()
149 sndPlayBeep(muGetFreqFromNote(iNote), ms, pPrefs); in outSpeaker()
181 if (iCurrPlayingNote==msg.MsgData.NoteOff.iNote) in ConvertMIDI()
201 iCurrPlayingNote = msg.MsgData.NoteOn.iNote; in ConvertMIDI()
H A Dmidifile.h86 int iNote; member
91 int iNote; member
95 int iNote; member
188 BOOL midiTrackSetKeyPressure(MIDI_FILE *pMF, int iTrack, int iNote, int iAftertouch);
193 BOOL midiTrackAddNote(MIDI_FILE *pMF, int iTrack, int iNote, int iLength, int iVol, BOOL bAutoInc,…
H A Dmidiutil.h60 char *muGetNameFromNote(char *pStr, int iNote);
61 float muGetFreqFromNote(int iNote);
H A Dmozart.c130 notes[msg.MsgData.NoteOn.iNote]--, notes_up++; in mozartFileConcat()
132 notes[msg.MsgData.NoteOn.iNote]--, notes_up++; in mozartFileConcat()
134 notes[msg.MsgData.NoteOn.iNote]++, notes_down++; in mozartFileConcat()
H A Dmididump.c72 muGetNameFromNote(str, msg.MsgData.NoteOff.iNote);
76 muGetNameFromNote(str, msg.MsgData.NoteOn.iNote);
80 muGetNameFromNote(str, msg.MsgData.NoteKeyPressure.iNote);
H A Dmidifile.c791 BOOL midiTrackSetKeyPressure(MIDI_FILE *pMF, int iTrack, int iNote, int iAftertouch) in midiTrackSetKeyPressure() argument
793 return midiTrackAddMsg(pMF, iTrack, msgNoteKeyPressure, iNote, iAftertouch); in midiTrackSetKeyPressure()
857 BOOL midiTrackAddNote(MIDI_FILE *_pMF, int iTrack, int iNote, int iLength, int iVol, BOOL bAutoInc,… in midiTrackAddNote() argument
867 if (!IsNoteValid(iNote)) return FALSE; in midiTrackAddNote()
880 pTrk->LastNote[i].note = (BYTE)iNote; in midiTrackAddNote()
888 *ptr++ = (BYTE)iNote; in midiTrackAddNote()
1012 pMsg->MsgData.NoteOn.iNote = *(pMsgDataPtr); in midiReadGetNextMessage()
1019 pMsg->MsgData.NoteOff.iNote = *(pMsgDataPtr); in midiReadGetNextMessage()
1025 pMsg->MsgData.NoteKeyPressure.iNote = *(pMsgDataPtr); in midiReadGetNextMessage()
/dports/audio/tiatracker/tiatracker-1.3/
H A Dpianokeyboard.cpp99 int iNote = static_cast<int>(note); in setInstrumentPitchGuide() local
100 if (iNote >= 0 && iNote < numKeys) { in setInstrumentPitchGuide()
102 if (keyInfo[iNote].isEnabled) { in setInstrumentPitchGuide()
104 if (off < keyInfo[iNote].off) { in setInstrumentPitchGuide()
107 keyInfo[iNote].note = note; in setInstrumentPitchGuide()
108 keyInfo[iNote].off = off; in setInstrumentPitchGuide()
112 keyInfo[iNote].isEnabled = true; in setInstrumentPitchGuide()
113 keyInfo[iNote].frequency = freq; in setInstrumentPitchGuide()
114 keyInfo[iNote].note = note; in setInstrumentPitchGuide()
115 keyInfo[iNote].off = off; in setInstrumentPitchGuide()
[all …]
H A Dguidekeyboard.cpp56 int iNote = TiaSound::getIntFromNote(note); in setInstrumentPitchGuide() local
57 keyInfo[iNote].frequency = freq; in setInstrumentPitchGuide()
58 keyInfo[iNote].off = pitchGuide->getPercentOff(freq); in setInstrumentPitchGuide()
/dports/audio/libadplug/adplug-adplug-2.3.3/src/
H A Dcmf.cpp244 uint8_t iNote = this->data[this->iPlayPointer++]; in update() local
246 this->cmfNoteOff(iChannel, iNote, iVelocity); in update()
251 uint8_t iNote = this->data[this->iPlayPointer++]; in update() local
254 if (iNotePlaying[iChannel] == iNote) in update()
272 this->cmfNoteOn(iChannel, iNote, iVelocity); in update()
550 *iBlock = iNote / 12; in getFreq()
555 (double)iNote + ( in getFreq()
568 getFreq(iChannel, iNote, &iBlock, &iOPLFNum); in cmfNoteOn()
651 this->chOPL[iPercChannel].iMIDINote = iNote; in cmfNoteOn()
698 this->chOPL[iOPLChannel].iMIDINote = iNote; in cmfNoteOn()
[all …]
H A Dcmf.h108 void getFreq(uint8_t iChannel, uint8_t iNote, uint8_t * iBlock, uint16_t * iOPLFNum);
109 void cmfNoteOn(uint8_t iChannel, uint8_t iNote, uint8_t iVelocity);
110 void cmfNoteOff(uint8_t iChannel, uint8_t iNote, uint8_t iVelocity);
/dports/audio/stk/stk-4.6.2/projects/eguitar/
H A Deguitar.cpp60 unsigned int iNote; // note number associated with this string member
62 StringInfo() : inUse(false), iNote(0) {}; in StringInfo()
120 unsigned int iNote = data->message.intValues[0]; in processMessage() local
129 data->voices[s].iNote = iNote; in processMessage()
130 data->guitar->noteOn( Midi2Pitch[iNote], value2 * ONE_OVER_128, s ); in processMessage()
137 data->guitar->noteOn( Midi2Pitch[iNote], value2 * ONE_OVER_128, channel-1 ); in processMessage()
146 unsigned int s, iNote; in processMessage() local
147 iNote = data->message.intValues[0]; in processMessage()
149 if ( data->voices[s].inUse && iNote == data->voices[s].iNote ) in processMessage()
/dports/audio/csoundqt/CsoundQt-0.9.8.1/src/Examples/FLOSS Manual Examples/01 Basics/
H A D01D13_simple_algorithmic_note_generator.csd23 iNote table rnd(1),giNotes,1 ; read a random value from the function table
27 aSig wgpluck2 0.98, 0.2, cpsmidinn(iNote+iDtn), iPlk, 0.06
H A D01D08_markov_music.csd96 iNote = p4
97 iFreq = giBasFreq * giNotes[iNote]
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/src/audio/
H A Dmidi_region.c499 msg.MsgData.NoteOff.iNote); in midi_region_new_from_midi_file()
502 self, msg.MsgData.NoteOff.iNote); in midi_region_new_from_midi_file()
522 msg.MsgData.NoteOff.iNote = in midi_region_new_from_midi_file()
523 msg.MsgData.NoteOn.iNote; in midi_region_new_from_midi_file()
532 msg.MsgData.NoteOn.iNote, in midi_region_new_from_midi_file()
536 msg.MsgData.NoteOn.iNote, in midi_region_new_from_midi_file()
542 msg.MsgData.NoteKeyPressure.iNote); in midi_region_new_from_midi_file()
/dports/textproc/metauml/metauml_lib/thrunk/
H A Dmetauml_note.mp84 NoteInfo.iNote;
87 ENote.@#(iNote)(contents);
97 %% ENote.myNote(iNote)("This is a formula", TEX("$a=b$"));

12