Home
last modified time | relevance | path

Searched refs:low (Results 1 – 12 of 12) sorted by relevance

/sound/oss/
Dmsnd.h147 #define MAKELONG(low,hi) ((long)(((WORD)(low))|(((DWORD)((WORD)(hi)))<<16))) argument
148 #define MAKEWORD(low,hi) ((WORD)(((BYTE)(low))|(((WORD)((BYTE)(hi)))<<8))) argument
273 unsigned char mid, unsigned char low);
Dmsnd.c285 unsigned char mid, unsigned char low) in msnd_send_word() argument
292 msnd_outb(low, io + HP_TXL); in msnd_send_word()
DCHANGELOG79 - Added the "lowlevel" subdirectory for additional low level drivers that
/sound/isa/msnd/
Dmsnd.h186 #define MAKELONG(low, hi) ((long)(((u16)(low))|(((u32)((u16)(hi)))<<16))) argument
187 #define MAKEWORD(low, hi) ((u16)(((u8)(low))|(((u16)((u8)(hi)))<<8))) argument
292 unsigned char low);
Dmsnd.c108 unsigned char mid, unsigned char low) in snd_msnd_send_word() argument
115 outb(low, io + HP_TXL); in snd_msnd_send_word()
/sound/
Dsound_core.c174 …nit * s, struct sound_unit **list, const struct file_operations *fops, int index, int low, int top) in __sound_insert_unit() argument
176 int n=low; in __sound_insert_unit()
195 n = low+(index*16); in __sound_insert_unit()
254 …ruct sound_unit **list, const struct file_operations *fops, int index, int low, int top, const cha… in sound_insert_unit() argument
264 r = __sound_insert_unit(s, list, fops, index, low, top); in sound_insert_unit()
286 low = s->unit_minor + SOUND_STEP; in sound_insert_unit()
/sound/synth/emux/
Demux_effect.c53 int low, high; /* value range */ member
112 if (effect < parm_defs[type].low) in effect_set_byte()
113 effect = parm_defs[type].low; in effect_set_byte()
129 if (effect < parm_defs[type].low) in effect_set_word()
130 effect = parm_defs[type].low; in effect_set_word()
Dsoundfont.c449 zp->v.low == map.map_key && in load_map()
474 zp->v.low = map.map_key; in load_map()
801 int s, low, bit; in snd_sf_linear_to_log() local
808 low = (amount >> 16) & 0xff; in snd_sf_linear_to_log()
810 v = (log_tbl[s + 1] * low + log_tbl[s] * (0x100 - low)) >> 8; in snd_sf_linear_to_log()
1037 zone->v.low = (freq_to_note(patch.low_note) + 99) / 100; in load_guspatch()
1045 zone->v.root, zone->v.tune, zone->v.low, zone->v.high); in load_guspatch()
1178 zone = search_first_zone(sflist, cur->bank, cur->instr, cur->v.low); in add_preset()
1194 if ((index = get_index(cur->bank, cur->instr, cur->v.low)) < 0) in add_preset()
1210 if ((index = get_index(zp->bank, zp->instr, zp->v.low)) < 0) in delete_preset()
[all …]
/sound/pci/emu10k1/
Demuproc.c310 u32 low, high; in snd_emu10k1_proc_acode_read() local
312 low = snd_emu10k1_efx_read(emu, pc * 2); in snd_emu10k1_proc_acode_read()
319 (low >> 12) & 0x7ff, in snd_emu10k1_proc_acode_read()
320 (low >> 0) & 0x7ff, in snd_emu10k1_proc_acode_read()
322 high, low); in snd_emu10k1_proc_acode_read()
328 (low >> 10) & 0x3ff, in snd_emu10k1_proc_acode_read()
329 (low >> 0) & 0x3ff, in snd_emu10k1_proc_acode_read()
331 high, low); in snd_emu10k1_proc_acode_read()
/sound/isa/sb/
Demu8000.c92 unsigned short low; in snd_emu8000_peek_dw() local
100 low = inw(port); /* Read low word of data */ in snd_emu8000_peek_dw()
101 res = low + (inw(port+2) << 16); in snd_emu8000_peek_dw()
/sound/oss/dmasound/
Ddmasound_paula.c250 u_char *low = high+write_sq_block_size_half; \
258 *low++ = (data>>2) & 0x3f; \
/sound/core/oss/
Dpcm_plugin.c44 unsigned int low = (src_rate * 95) / 100; in rate_match() local
46 return dst_rate >= low && dst_rate <= high; in rate_match()