Home
last modified time | relevance | path

Searched refs:bin_buf (Results 1 – 4 of 4) sorted by relevance

/linux/sound/soc/sof/amd/
H A Dacp-loader.c62 if (!adata->bin_buf) { in acp_dsp_block_write()
66 adata->bin_buf = dma_alloc_coherent(&pci->dev, dma_size, in acp_dsp_block_write()
69 if (!adata->bin_buf) in acp_dsp_block_write()
73 dest = adata->bin_buf + offset; in acp_dsp_block_write()
185 ret = configure_and_run_sha_dma(adata, adata->bin_buf, ACP_SYSTEM_MEMORY_WINDOW, in acp_dsp_pre_fw_run()
233 dma_free_coherent(&pci->dev, dma_size, adata->bin_buf, adata->sha_dma_addr); in acp_dsp_pre_fw_run()
234 adata->bin_buf = NULL; in acp_dsp_pre_fw_run()
H A Dacp.h253 u8 *bin_buf; member
/linux/include/linux/
H A Dstring.h339 int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
340 int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
/linux/lib/
H A Dvsprintf.c3127 * @bin_buf: The buffer to place args' binary value
3139 * If the return value is greater than @size, the resulting bin_buf is NOT
3142 int vbin_printf(u32 *bin_buf, size_t size, const char *fmt_str, va_list args) in vbin_printf()
3152 str = (char *)bin_buf; in vbin_printf()
3153 end = (char *)(bin_buf + size); in vbin_printf()
3255 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf; in vbin_printf()
3265 * @bin_buf: Binary arguments for the format string
3268 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
3282 int bstr_printf(char *buf, size_t size, const char *fmt_str, const u32 *bin_buf) in bstr_printf()
3290 const char *args = (const char *)bin_buf; in bstr_printf()
3141 vbin_printf(u32 * bin_buf,size_t size,const char * fmt_str,va_list args) vbin_printf() argument
3281 bstr_printf(char * buf,size_t size,const char * fmt_str,const u32 * bin_buf) bstr_printf() argument
[all...]