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

/linux-master/sound/soc/sof/amd/
H A Dacp-loader.c62 if (!adata->bin_buf) {
66 adata->bin_buf = dma_alloc_coherent(&pci->dev, dma_size,
69 if (!adata->bin_buf)
73 dest = adata->bin_buf + offset;
185 ret = configure_and_run_sha_dma(adata, adata->bin_buf, ACP_SYSTEM_MEMORY_WINDOW,
230 dma_free_coherent(&pci->dev, dma_size, adata->bin_buf, adata->sha_dma_addr);
231 adata->bin_buf = NULL;
H A Dacp.h239 u8 *bin_buf; member in struct:acp_dev_data
/linux-master/include/linux/
H A Dstring.h315 int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
316 int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
317 int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) __printf(3, 4);
/linux-master/lib/
H A Dvsprintf.c3044 * @bin_buf: The buffer to place args' binary value
3056 * If the return value is greater than @size, the resulting bin_buf is NOT
3059 int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args) argument
3065 str = (char *)bin_buf;
3066 end = (char *)(bin_buf + size);
3191 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
3201 * @bin_buf: Binary arguments for the format string
3204 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
3218 int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf) argument
3222 const char *args = (const char *)bin_buf;
3417 bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) argument
[all...]

Completed in 356 milliseconds