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

/haiku/src/system/libroot/posix/musl/math/
H A D__fpclassifyl.c13 int msb = u.i.m>>63; local
14 if (!e && !msb)
18 * one representation of each infinity, with the mantissa msb
22 if (__BYTE_ORDER == __LITTLE_ENDIAN && !msb)
26 if (!msb)
/haiku/headers/libs/agg/
H A Dagg_font_cache_manager.h77 unsigned msb = (glyph_code >> 8) & 0xFF; local
78 if(m_glyphs[msb])
80 return m_glyphs[msb][glyph_code & 0xFF];
94 unsigned msb = (glyph_code >> 8) & 0xFF; local
95 if(m_glyphs[msb] == 0)
97 m_glyphs[msb] =
100 memset(m_glyphs[msb], 0, sizeof(glyph_cache*) * 256);
104 if(m_glyphs[msb][lsb]) return 0; // Already exists, do not overwrite
117 return m_glyphs[msb][lsb] = glyph;
/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
181 event->byte3 = msb;
/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/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
176 data[2] = msb;
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/add-ons/kernel/drivers/network/ether/dec21xxx/dev/de/
H A Dif_de.c1894 const unsigned msb = 1 << (bitwidth + 3 - 1); local
1908 const unsigned thisbit = bits & msb;
1939 unsigned msb = 1 << (bits - 1); local
1941 unsigned lastbit = (csr & MII_DOUT) ? msb : 0;
1947 const unsigned thisbit = data & msb;

Completed in 103 milliseconds