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

/haiku/src/apps/midiplayer/
H A DSynthBridge.cpp103 SynthBridge::PitchBend(uchar channel, uchar lsb, uchar msb, bigtime_t time) argument
105 fMidiSynth.PitchBend(channel + 1, lsb, msb, time / 1000);
H A DSynthBridge.h57 virtual void PitchBend(uchar channel, uchar lsb, uchar msb,
/haiku/src/kits/midi/
H A DMidiText.cpp99 BMidiText::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
103 "PITCH BEND; channel = %d, lsb = %d, msb = %d\n",
104 channel, lsb, msb);
H A DMidiGlue.cpp78 uchar channel, uchar lsb, uchar msb, bigtime_t time)
80 fMidiObject->PitchBend(channel + 1, lsb, msb, MAKE_TIME(time));
174 uchar channel, uchar lsb, uchar msb, bigtime_t time)
176 fMidiObject->SprayPitchBend(channel + 1, lsb, msb, MAKE_TIME(time));
77 PitchBend( uchar channel, uchar lsb, uchar msb, bigtime_t time) argument
173 PitchBend( uchar channel, uchar lsb, uchar msb, bigtime_t time) argument
H A DMidiSynth.cpp214 BMidiSynth::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
217 be_synth->fSynth->PitchBend(channel, lsb, msb, time);
H A DMidiGlue.h49 uchar channel, uchar lsb, uchar msb, bigtime_t time);
91 uchar channel, uchar lsb, uchar msb, bigtime_t time);
H A DMidi.cpp107 BMidi::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
319 uchar channel, uchar lsb, uchar msb, uint32 time) const
321 fProducer->SprayPitchBend(channel - 1, lsb, msb, MAKE_BIGTIME(time));
318 SprayPitchBend( uchar channel, uchar lsb, uchar msb, uint32 time) const argument
H A DMidiPort.cpp183 BMidiPort::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
185 fLocalSource->SprayPitchBend(channel - 1, lsb, msb, MAKE_BIGTIME(time));
H A DSoftSynth.cpp432 BSoftSynth::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
438 ((uint32)(msb & 0x7f) << 7) | (lsb & 0x7f));
H A DMidiStore.cpp174 BMidiStore::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
180 event->byte2 = lsb;
/haiku/headers/os/midi/
H A DMidi.h39 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
87 uchar channel, uchar lsb, uchar msb, uint32 time) const;
H A DMidiSynth.h61 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
H A DMidiText.h35 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
H A DMidiPort.h44 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
H A DMidiStore.h41 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
/haiku/headers/libs/agg/
H A Dagg_font_cache_manager.h103 unsigned lsb = glyph_code & 0xFF; local
104 if(m_glyphs[msb][lsb]) return 0; // Already exists, do not overwrite
117 return m_glyphs[msb][lsb] = glyph;
/haiku/headers/os/midi2/
H A DMidiConsumer.h75 uchar channel, uchar lsb, uchar msb, bigtime_t time);
H A DMidiProducer.h90 uchar channel, uchar lsb, uchar msb, bigtime_t time = 0) const;
/haiku/src/kits/midi2/
H A DMidiLocalProducer.cpp170 uchar lsb, uchar msb, bigtime_t time) const
175 data[1] = lsb;
169 SprayPitchBend(uchar channel, uchar lsb, uchar msb, bigtime_t time) const argument
H A DMidiLocalConsumer.cpp270 BMidiLocalConsumer::PitchBend(uchar channel, uchar lsb, uchar msb, bigtime_t time) argument
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c2739 struct stat lsb; local
2906 if ( stat( name, &sb ) < 0 || lstat( name, &lsb ) < 0 )
2912 switch ( lsb.st_mode & S_IFMT )
2933 modestr[1] = ( lsb.st_mode & S_IROTH ) ? 'r' : '-';
2934 modestr[2] = ( lsb.st_mode & S_IWOTH ) ? 'w' : '-';
2935 modestr[3] = ( lsb.st_mode & S_IXOTH ) ? 'x' : '-';
2946 timestr = ctime( &lsb.st_mtime );
2954 if ( now - lsb.st_mtime > 60*60*24*182 ) /* 1/2 year */
2986 modestr, (long) lsb.st_nlink, (long long) lsb
[all...]

Completed in 194 milliseconds