Home
last modified time | relevance | path

Searched refs:HIGHBITS (Results 1 – 14 of 14) sorted by relevance

/dports/audio/ample/ample-0.5.7/src/
H A Dbase64.h1 #define HIGHBITS 0x30 /* 00110000 */ macro
4 #define CHAR1(x,y) ((x << 2) | ((y & HIGHBITS) >> 4))
5 #define CHAR2(x,y) (((x & (MIDBITS | LOWBITS)) << 4) | ((y & (HIGHBITS | MIDBITS)) >> 2))
/dports/hebrew/hunspell/hspell-1.4/
H A Ddict_radix.c64 #define HIGHBITS ((CONST32(1)<<31) | (CONST32(1)<<30)) macro
69 #define VALUEMASK (~HIGHBITS)
181 if((head.val_or_index & HIGHBITS) == HIGHBITS_FULL){ in do_print_tree()
192 } else if((head.val_or_index & HIGHBITS) == HIGHBITS_SMALL){ in do_print_tree()
205 } else if((head.val_or_index & HIGHBITS) == HIGHBITS_MEDIUM){ in do_print_tree()
469 if((stack[sdepth]->val_or_index & HIGHBITS)==HIGHBITS_VALUE){ in do_read_dict()
488 } else if((stack[sdepth]->val_or_index & HIGHBITS)==HIGHBITS_SMALL){ in do_read_dict()
539 } else if((stack[sdepth]->val_or_index & HIGHBITS)==HIGHBITS_MEDIUM){ in do_read_dict()
636 switch(current.val_or_index & HIGHBITS){ in lookup()
/dports/hebrew/hspell/hspell-1.4/
H A Ddict_radix.c64 #define HIGHBITS ((CONST32(1)<<31) | (CONST32(1)<<30)) macro
69 #define VALUEMASK (~HIGHBITS)
181 if((head.val_or_index & HIGHBITS) == HIGHBITS_FULL){ in do_print_tree()
192 } else if((head.val_or_index & HIGHBITS) == HIGHBITS_SMALL){ in do_print_tree()
205 } else if((head.val_or_index & HIGHBITS) == HIGHBITS_MEDIUM){ in do_print_tree()
469 if((stack[sdepth]->val_or_index & HIGHBITS)==HIGHBITS_VALUE){ in do_read_dict()
488 } else if((stack[sdepth]->val_or_index & HIGHBITS)==HIGHBITS_SMALL){ in do_read_dict()
539 } else if((stack[sdepth]->val_or_index & HIGHBITS)==HIGHBITS_MEDIUM){ in do_read_dict()
636 switch(current.val_or_index & HIGHBITS){ in lookup()
/dports/games/libretro-bluemsx/blueMSX-libretro-faf470e/Src/SoundChips/
H A DOpenMsxY8950.cpp55 int Y8950::HIGHBITS(int c, int b) in HIGHBITS() function in Y8950
363 …eg_phase = EXPAND_BITS(AR_ADJUST_TABLE[HIGHBITS(eg_phase, EG_DP_BITS-EG_BITS)], EG_BITS, EG_DP_BIT… in slotOff()
620 lfo_am = amtable[am_mode][HIGHBITS(am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
621 lfo_pm = pmtable[pm_mode][HIGHBITS(pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
631 pgout = HIGHBITS(phase, DP_BASE_BITS); in calc_phase()
651 egout = AR_ADJUST_TABLE[HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
657 egout = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
668 egout = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
673 egout = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
683 egout = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
H A DOpenMsxYM2413_2.cpp74 static inline T HIGHBITS(T c, int b) in HIGHBITS() function
453 AR_ADJUST_TABLE[HIGHBITS( in slotOff()
758 lfo_am = amtable[HIGHBITS(am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
759 lfo_pm = pmtable[HIGHBITS(pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
771 pgout = HIGHBITS(phase, DP_BASE_BITS); in calc_phase()
795 out = AR_ADJUST_TABLE[HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
805 out = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
818 out = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
826 out = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
834 out = HIGHBITS(eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
H A DOpenMsxY8950.h300 inline static int HIGHBITS(int c, int b);
/dports/audio/festalon/festalon/src/nes/ext/
H A Demu2413.c98 #define HIGHBITS(c,b) ((c)>>(b)) macro
476 …slot->eg_phase = EXPAND_BITS (opll->AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS… in slotOff()
704 opll->lfo_am = opll->amtable[HIGHBITS (opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
705 opll->lfo_pm = opll->pmtable[HIGHBITS (opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
719 slot->pgout = HIGHBITS (slot->phase, DP_BASE_BITS); in calc_phase()
738 egout = opll->AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
750 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
770 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
780 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
/dports/emulators/mednafen/mednafen/src/nes/boards/
H A Demu2413.cpp101 #define HIGHBITS(c,b) ((c)>>(b)) macro
479 …slot->eg_phase = EXPAND_BITS (opll->AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS… in slotOff()
707 opll->lfo_am = opll->amtable[HIGHBITS (opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
708 opll->lfo_pm = opll->pmtable[HIGHBITS (opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
722 slot->pgout = HIGHBITS (slot->phase, DP_BASE_BITS); in calc_phase()
741 egout = opll->AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
753 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
773 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
783 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
/dports/games/libretro-fceumm/libretro-fceumm-91ccd3b/src/boards/
H A Demu2413.c139 #define HIGHBITS(c, b) ((c) >> (b)) macro
449 …slot->eg_phase = EXPAND_BITS(AR_ADJUST_TABLE[HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS)], EG_B… in slotOff()
676 opll->lfo_am = amtable[HIGHBITS(opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
677 opll->lfo_pm = pmtable[HIGHBITS(opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
689 slot->pgout = HIGHBITS(slot->phase, DP_BASE_BITS); in calc_phase()
705 egout = AR_ADJUST_TABLE[HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
716 egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
732 egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
741 egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
/dports/games/libretro-quicknes/QuickNES_Core-901248a/nes_emu/
H A Demu2413.cpp114 #define HIGHBITS(c,b) ((c)>>(b)) macro
492 …slot->eg_phase = EXPAND_BITS (opll->AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS… in slotOff()
715 opll->lfo_am = opll->amtable[HIGHBITS (opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
716 opll->lfo_pm = opll->pmtable[HIGHBITS (opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
730 slot->pgout = HIGHBITS (slot->phase, DP_BASE_BITS); in calc_phase()
749 egout = opll->AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
761 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
781 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
791 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
/dports/emulators/mednafen/mednafen/src/hw_sound/ym2413/
H A Demu2413.cpp153 #define HIGHBITS(c,b) ((c)>>(b)) macro
691 …slot->eg_phase = EXPAND_BITS (AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)], EG… in slotOff()
1107 opll->lfo_am = amtable[HIGHBITS (opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
1108 opll->lfo_pm = pmtable[HIGHBITS (opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
1121 slot->pgout = HIGHBITS (slot->phase, DP_BASE_BITS); in calc_phase()
1148 egout = AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
1160 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1180 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1190 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1200 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
/dports/audio/vgmplay/vgmplay-0.40.9_2/chips/
H A Demu2413.c159 #define HIGHBITS(c,b) ((c)>>(b)) macro
703 …slot->eg_phase = EXPAND_BITS (AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)], EG… in slotOff()
1160 opll->lfo_am = amtable[HIGHBITS (opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
1161 opll->lfo_pm = pmtable[HIGHBITS (opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
1175 slot->pgout = HIGHBITS (slot->phase, DP_BASE_BITS); in calc_phase()
1202 egout = AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
1214 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1234 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1244 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1254 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/gme/game-music-emu-0.6pre/vgmplay/VGMPlay/chips/
H A Demu2413.c160 #define HIGHBITS(c,b) ((c)>>(b)) macro
704 …slot->eg_phase = EXPAND_BITS (AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)], EG… in slotOff()
1161 opll->lfo_am = amtable[HIGHBITS (opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
1162 opll->lfo_pm = pmtable[HIGHBITS (opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
1176 slot->pgout = HIGHBITS (slot->phase, DP_BASE_BITS); in calc_phase()
1203 egout = AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
1215 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1235 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1245 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1255 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
/dports/multimedia/audacious-plugins/audacious-plugins-4.1/src/console/
H A DYm2413_Emu.cc321 #define HIGHBITS(c,b) ((c)>>(b)) macro
865 …slot->eg_phase = EXPAND_BITS (AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)], EG… in slotOff()
1314 opll->lfo_am = amtable[HIGHBITS (opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; in update_ampm()
1315 opll->lfo_pm = pmtable[HIGHBITS (opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; in update_ampm()
1329 slot->pgout = HIGHBITS (slot->phase, DP_BASE_BITS); in calc_phase()
1356 egout = AR_ADJUST_TABLE[HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS)]; in calc_envelope()
1368 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1388 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1398 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()
1408 egout = HIGHBITS (slot->eg_phase, EG_DP_BITS - EG_BITS); in calc_envelope()