Home
last modified time | relevance | path

Searched defs:q (Results 1 – 22 of 22) sorted by relevance

/sound/core/seq/
Dseq_queue.c63 static int queue_list_add(struct snd_seq_queue *q) in queue_list_add()
84 struct snd_seq_queue *q; in queue_list_remove() local
111 struct snd_seq_queue *q; in queue_new() local
142 static void queue_delete(struct snd_seq_queue *q) in queue_delete()
193 struct snd_seq_queue *q; in snd_seq_queue_alloc() local
212 struct snd_seq_queue *q; in snd_seq_queue_delete() local
228 struct snd_seq_queue *q; in queueptr() local
245 struct snd_seq_queue *q; in snd_seq_queue_find_name() local
260 void snd_seq_check_queue(struct snd_seq_queue *q, int atomic, int hop) in snd_seq_check_queue()
312 struct snd_seq_queue *q; in snd_seq_enqueue_event() local
[all …]
Dseq_queue.h95 #define queuefree(q) snd_use_lock_free(&(q)->use_lock) argument
120 #define udiv_qrnnd(q, r, n1, n0, d) \ argument
128 #define u64_div(x,y,q) do {u32 __tmp; udiv_qrnnd(q, __tmp, (x)>>32, x, y);} while (0) argument
130 #define u64_divmod(x,y,q,r) udiv_qrnnd(q, r, (x)>>32, x, y) argument
133 #define u64_div(x,y,q) ((q) = (u32)((u64)(x) / (u64)(y))) argument
135 #define u64_divmod(x,y,q,r) (u64_div(x,y,q), u64_mod(x,y,r)) argument
Dseq_timer.c140 struct snd_seq_queue *q = timeri->callback_data; in snd_seq_timer_interrupt() local
270 int snd_seq_timer_open(struct snd_seq_queue *q) in snd_seq_timer_open()
313 int snd_seq_timer_close(struct snd_seq_queue *q) in snd_seq_timer_close()
473 struct snd_seq_queue *q; in snd_seq_info_timer_read() local
Dseq_clientmgr.c559 struct snd_seq_queue *q; in update_timestamp_of_queue() local
1517 struct snd_seq_queue *q; in snd_seq_ioctl_create_queue() local
1549 struct snd_seq_queue *q; in snd_seq_ioctl_get_queue_info() local
1570 struct snd_seq_queue *q; in snd_seq_ioctl_set_queue_info() local
1603 struct snd_seq_queue *q; in snd_seq_ioctl_get_named_queue() local
1735 struct snd_seq_queue *q; in snd_seq_ioctl_set_queue_timer() local
/sound/core/seq/oss/
Dseq_oss_readq.c48 struct seq_oss_readq *q; in snd_seq_oss_readq_new() local
75 snd_seq_oss_readq_delete(struct seq_oss_readq *q) in snd_seq_oss_readq_delete()
87 snd_seq_oss_readq_clear(struct seq_oss_readq *q) in snd_seq_oss_readq_clear()
102 snd_seq_oss_readq_puts(struct seq_oss_readq *q, int dev, unsigned char *data, int len) in snd_seq_oss_readq_puts()
136 int snd_seq_oss_readq_sysex(struct seq_oss_readq *q, int dev, in snd_seq_oss_readq_sysex()
154 snd_seq_oss_readq_put_event(struct seq_oss_readq *q, union evrec *ev) in snd_seq_oss_readq_put_event()
182 snd_seq_oss_readq_pick(struct seq_oss_readq *q, union evrec *rec) in snd_seq_oss_readq_pick()
194 snd_seq_oss_readq_wait(struct seq_oss_readq *q) in snd_seq_oss_readq_wait()
206 snd_seq_oss_readq_free(struct seq_oss_readq *q) in snd_seq_oss_readq_free()
219 snd_seq_oss_readq_poll(struct seq_oss_readq *q, struct file *file, poll_table *wait) in snd_seq_oss_readq_poll()
[all …]
Dseq_oss_writeq.c39 struct seq_oss_writeq *q; in snd_seq_oss_writeq_new() local
65 snd_seq_oss_writeq_delete(struct seq_oss_writeq *q) in snd_seq_oss_writeq_delete()
78 snd_seq_oss_writeq_clear(struct seq_oss_writeq *q) in snd_seq_oss_writeq_clear()
94 snd_seq_oss_writeq_sync(struct seq_oss_writeq *q) in snd_seq_oss_writeq_sync()
134 snd_seq_oss_writeq_wakeup(struct seq_oss_writeq *q, abstime_t time) in snd_seq_oss_writeq_wakeup()
150 snd_seq_oss_writeq_get_free_size(struct seq_oss_writeq *q) in snd_seq_oss_writeq_get_free_size()
163 snd_seq_oss_writeq_set_output(struct seq_oss_writeq *q, int val) in snd_seq_oss_writeq_set_output()
Dseq_oss_event.c54 snd_seq_oss_process_event(struct seq_oss_devinfo *dp, union evrec *q, struct snd_seq_event *ev) in snd_seq_oss_process_event()
107 old_event(struct seq_oss_devinfo *dp, union evrec *q, struct snd_seq_event *ev) in old_event()
133 extended_event(struct seq_oss_devinfo *dp, union evrec *q, struct snd_seq_event *ev) in extended_event()
187 chn_voice_event(struct seq_oss_devinfo *dp, union evrec *q, struct snd_seq_event *ev) in chn_voice_event()
208 chn_common_event(struct seq_oss_devinfo *dp, union evrec *q, struct snd_seq_event *ev) in chn_common_event()
235 timing_event(struct seq_oss_devinfo *dp, union evrec *q, struct snd_seq_event *ev) in timing_event()
270 local_event(struct seq_oss_devinfo *dp, union evrec *q, struct snd_seq_event *ev) in local_event()
Dseq_oss_readq.h32 union evrec *q; member
55 #define snd_seq_oss_readq_lock(q, flags) spin_lock_irqsave(&(q)->lock, flags) argument
56 #define snd_seq_oss_readq_unlock(q, flags) spin_unlock_irqrestore(&(q)->lock, flags) argument
/sound/oss/
Dmidibuf.c58 #define DATA_AVAIL(q) (q->len) argument
59 #define SPACE_AVAIL(q) (MAX_QUEUE_SIZE - q->len) argument
61 #define QUEUE_BYTE(q, data) \ argument
71 #define REMOVE_BYTE(q, data) \ argument
Dsleep.h11 oss_broken_sleep_on(wait_queue_head_t *q, long timeout) in oss_broken_sleep_on()
Dsequencer.c360 static int extended_event(unsigned char *q) in extended_event()
732 static int play_event(unsigned char *q) in play_event()
/sound/core/
Dmisc.c121 const struct snd_pci_quirk *q; in snd_pci_quirk_lookup_id() local
Dpcm_lib.c558 unsigned int q; in div_up() local
820 unsigned int q = i->min; in snd_interval_ratnum() local
859 unsigned int q = i->max; in snd_interval_ratnum() local
937 unsigned int q = i->min; in snd_interval_ratden() local
969 unsigned int q = i->max; in snd_interval_ratden() local
/sound/pci/emu10k1/
Dmemory.c173 struct snd_emu10k1_memblk *q; in unmap_memblk() local
431 struct snd_emu10k1_memblk *q; in get_single_page_range() local
/sound/pci/hda/
Dhda_intel.c1352 const struct snd_pci_quirk *q; in check_position_fix() local
1433 const struct snd_pci_quirk *q; in check_probe_mask() local
1474 const struct snd_pci_quirk *q; in check_msi() local
2162 const struct snd_pci_quirk *q; in azx_probe_continue() local
Dhda_auto_parser.c975 const struct snd_pci_quirk *q; in snd_hda_pick_fixup() local
Dpatch_realtek.c936 const struct alc_codec_rename_pci_table *q; in alc_codec_rename_from_preset() local
984 const struct snd_pci_quirk *q; in has_cdefine_beep() local
Dhda_codec.c1059 struct hda_cvt_setup *q) in really_cleanup_stream()
/sound/sh/
Daica.c234 int q, err, period_offset; in aica_dma_transfer() local
/sound/pci/nm256/
Dnm256.c1652 const struct snd_pci_quirk *q; in snd_nm256_probe() local
/sound/pci/
Datiixp.c566 const struct snd_pci_quirk *q; in ac97_probing_bugs() local
/sound/pci/ac97/
Dac97_codec.c2879 struct quirk_table *q; in apply_quirk_str() local