Home
last modified time | relevance | path

Searched refs:dest_buf (Results 1 – 6 of 6) sorted by relevance

/linux/arch/arm/include/asm/
H A Dfncpy.h59 #define fncpy(dest_buf, funcp, size) ({ \ argument
69 BUG_ON((uintptr_t)(dest_buf) & (FNCPY_ALIGN - 1) || \
72 memcpy(dest_buf, (void const *)(__funcp_address & ~1), size); \
73 flush_icache_range((unsigned long)(dest_buf), \
74 (unsigned long)(dest_buf) + (size)); \
77 : "0" ((uintptr_t)(dest_buf) | (__funcp_address & 1))); \
/linux/drivers/media/test-drivers/vidtv/
H A Dvidtv_pes.c74 return vidtv_memset(args->dest_buf, in vidtv_pes_write_header_stuffing()
123 nbytes += vidtv_memcpy(args->dest_buf, in vidtv_pes_write_pts_dts()
159 nbytes += vidtv_memcpy(args->dest_buf, in vidtv_pes_write_h()
166 nbytes += vidtv_memcpy(args->dest_buf, in vidtv_pes_write_h()
237 nbytes += vidtv_memcpy(args->dest_buf, in vidtv_pes_write_stuffing()
245 nbytes += vidtv_pes_write_pcr_bits(args->dest_buf, in vidtv_pes_write_stuffing()
254 nbytes += vidtv_memset(args->dest_buf, in vidtv_pes_write_stuffing()
291 nbytes += vidtv_memcpy(args.dest_buf, in vidtv_pes_write_ts_h()
308 .dest_buf = args->dest_buf, in vidtv_pes_write_into()
315 .dest_buf = args->dest_buf, in vidtv_pes_write_into()
[all …]
H A Dvidtv_pes.h92 void *dest_buf; member
122 void *dest_buf; member
153 void *dest_buf; member
H A Dvidtv_psi.h264 void *dest_buf; member
287 void *dest_buf; member
307 void *dest_buf; member
327 void *dest_buf; member
/linux/crypto/async_tx/
H A Dasync_memcpy.c72 void *dest_buf, *src_buf; in async_memcpy() local
78 dest_buf = kmap_atomic(dest) + dest_offset; in async_memcpy()
81 memcpy(dest_buf, src_buf, len); in async_memcpy()
84 kunmap_atomic(dest_buf); in async_memcpy()
/linux/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt_coredump.c107 info->dest_buf = kmalloc(info->dest_buf_size, in bnxt_hwrm_dbg_dma_data()
109 if (!info->dest_buf) { in bnxt_hwrm_dbg_dma_data()
119 if (info->dest_buf) { in bnxt_hwrm_dbg_dma_data()
125 memcpy(info->dest_buf + off, dma_buf, copylen); in bnxt_hwrm_dbg_dma_data()
132 kfree(info->dest_buf); in bnxt_hwrm_dbg_dma_data()
133 info->dest_buf = NULL; in bnxt_hwrm_dbg_dma_data()
167 coredump->data = info.dest_buf; in bnxt_hwrm_dbg_coredump_list()
214 info.dest_buf = buf + offset; in bnxt_hwrm_dbg_coredump_retrieve()