/linux-6.6.21/sound/isa/sb/ |
D | emu8000_synth.c | 47 if (hw->memhdr) { in snd_emu8000_probe() 49 snd_util_memhdr_free(hw->memhdr); in snd_emu8000_probe() 51 hw->memhdr = snd_util_memhdr_new(hw->mem_size); in snd_emu8000_probe() 52 if (hw->memhdr == NULL) { in snd_emu8000_probe() 58 emu->memhdr = hw->memhdr; in snd_emu8000_probe() 66 snd_util_memhdr_free(hw->memhdr); in snd_emu8000_probe() 68 hw->memhdr = NULL; in snd_emu8000_probe() 96 snd_util_memhdr_free(hw->memhdr); in snd_emu8000_remove() 98 hw->memhdr = NULL; in snd_emu8000_remove()
|
D | emu8000_pcm.c | 528 snd_util_mem_free(rec->emu->memhdr, rec->block); in emu8k_pcm_hw_params() 533 rec->block = snd_util_mem_alloc(rec->emu->memhdr, rec->allocated_bytes); in emu8k_pcm_hw_params() 556 snd_util_mem_free(rec->emu->memhdr, rec->block); in emu8k_pcm_hw_free()
|
/linux-6.6.21/sound/synth/emux/ |
D | emux_proc.c | 33 if (emu->memhdr) { in snd_emux_proc_info_read() 34 snd_iprintf(buf, "Memory Size: %d\n", emu->memhdr->size); in snd_emux_proc_info_read() 35 snd_iprintf(buf, "Memory Available: %d\n", snd_util_mem_avail(emu->memhdr)); in snd_emux_proc_info_read() 36 snd_iprintf(buf, "Allocated Blocks: %d\n", emu->memhdr->nblocks); in snd_emux_proc_info_read()
|
D | emux_hwdep.c | 96 if (emu->memhdr) { in snd_emux_hwdep_ioctl() 97 int size = snd_util_mem_avail(emu->memhdr); in snd_emux_hwdep_ioctl()
|
D | emux.c | 103 emu->sflist = snd_sf_new(&sf_cb, emu->memhdr); in snd_emux_register()
|
D | emux_oss.c | 256 if (emu->memhdr) in snd_emux_ioctl_seq_oss() 257 return snd_util_mem_avail(emu->memhdr); in snd_emux_ioctl_seq_oss()
|
D | soundfont.c | 746 (sflist->callback.private_data, sp, sflist->memhdr, in load_data() 1017 (sflist->callback.private_data, smp, sflist->memhdr, in load_guspatch() 1382 sp, sflist->memhdr); in snd_sf_clear() 1406 sflist->memhdr = hdr; in snd_sf_new() 1486 sp, sflist->memhdr); in snd_soundfont_remove_unlocked()
|
/linux-6.6.21/sound/pci/emu10k1/ |
D | emu10k1_synth.c | 45 emux->memhdr = hw->memhdr; in snd_emu10k1_synth_probe()
|
D | memory.c | 214 list_for_each(p, &emu->memhdr->block) { in search_empty() 225 …blk = (struct snd_emu10k1_memblk *)__snd_util_memblk_new(emu->memhdr, psize << PAGE_SHIFT, p->prev… in search_empty() 314 hdr = emu->memhdr; in snd_emu10k1_alloc_pages() 408 struct snd_util_memhdr *hdr = hw->memhdr; in snd_emu10k1_synth_alloc() 434 struct snd_util_memhdr *hdr = emu->memhdr; in snd_emu10k1_synth_free() 516 get_single_page_range(emu->memhdr, blk, &first_page, &last_page); in synth_alloc_pages() 546 get_single_page_range(emu->memhdr, blk, &first_page, &last_page); in synth_free_pages()
|
D | emu10k1_main.c | 967 snd_util_memhdr_free(emu->memhdr); in snd_emu10k1_free() 1640 emu->memhdr = snd_util_memhdr_new(emu->max_cache_pages * PAGE_SIZE); in snd_emu10k1_create() 1641 if (!emu->memhdr) in snd_emu10k1_create() 1643 emu->memhdr->block_extra_size = sizeof(struct snd_emu10k1_memblk) - in snd_emu10k1_create()
|
/linux-6.6.21/sound/pci/trident/ |
D | trident_memory.c | 169 hdr = trident->tlb.memhdr; in snd_trident_alloc_sg_pages() 215 hdr = trident->tlb.memhdr; in snd_trident_alloc_cont_pages() 269 hdr = trident->tlb.memhdr; in snd_trident_free_pages()
|
D | trident.h | 255 struct snd_util_memhdr * memhdr; /* page allocation list */ member
|
D | trident_main.c | 3286 snd_iprintf(buffer, "Memory Maximum : %d\n", trident->tlb.memhdr->size); in snd_trident_proc_read() 3287 snd_iprintf(buffer, "Memory Used : %d\n", trident->tlb.memhdr->used); in snd_trident_proc_read() 3288 snd_iprintf(buffer, "Memory Free : %d\n", snd_util_mem_avail(trident->tlb.memhdr)); in snd_trident_proc_read() 3344 trident->tlb.memhdr = snd_util_memhdr_new(SNDRV_TRIDENT_PAGE_SIZE * SNDRV_TRIDENT_MAX_PAGES); in snd_trident_tlb_alloc() 3345 if (trident->tlb.memhdr == NULL) in snd_trident_tlb_alloc() 3348 trident->tlb.memhdr->block_extra_size = sizeof(struct snd_trident_memblk_arg); in snd_trident_tlb_alloc() 3628 snd_util_memhdr_free(trident->tlb.memhdr); in snd_trident_free()
|
/linux-6.6.21/include/sound/ |
D | emu8000.h | 71 struct snd_util_memhdr *memhdr; member
|
D | soundfont.h | 85 struct snd_util_memhdr *memhdr; member
|
D | emux_synth.h | 111 struct snd_util_memhdr *memhdr; /* memory chunk information */ member
|
D | emu10k1.h | 1715 struct snd_util_memhdr *memhdr; /* page allocation list */ member
|