Home
last modified time | relevance | path

Searched refs:uval (Results 1 – 3 of 3) sorted by relevance

/sound/firewire/bebob/
Dbebob_maudio.c368 struct snd_ctl_elem_value *uval) in special_clk_ctl_get() argument
372 uval->value.enumerated.item[0] = params->clk_src; in special_clk_ctl_get()
376 struct snd_ctl_elem_value *uval) in special_clk_ctl_put() argument
382 id = uval->value.enumerated.item[0]; in special_clk_ctl_put()
420 struct snd_ctl_elem_value *uval) in special_sync_ctl_get() argument
428 uval->value.integer.value[0] = synced; in special_sync_ctl_get()
460 struct snd_ctl_elem_value *uval) in special_dig_in_iface_ctl_get() argument
484 uval->value.enumerated.item[0] = val; in special_dig_in_iface_ctl_get()
490 struct snd_ctl_elem_value *uval) in special_dig_in_iface_ctl_set() argument
497 id = uval->value.enumerated.item[0]; in special_dig_in_iface_ctl_set()
[all …]
/sound/core/
Dvmaster.c316 struct snd_ctl_elem_value *uval; in sync_slaves() local
318 uval = kmalloc(sizeof(*uval), GFP_KERNEL); in sync_slaves()
319 if (!uval) in sync_slaves()
323 uval->id = slave->slave.id; in sync_slaves()
324 slave_get_val(slave, uval); in sync_slaves()
326 slave_put_val(slave, uval); in sync_slaves()
328 kfree(uval); in sync_slaves()
/sound/core/oss/
Dmulaw.c87 unsigned char uval; in linear2ulaw() local
107 uval = (seg << 4) | ((pcm_val >> (seg + 3)) & 0xF); in linear2ulaw()
108 return uval ^ mask; in linear2ulaw()