Searched refs:dest_buf (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/arch/arm/include/asm/ |
D | fncpy.h | 71 #define fncpy(dest_buf, funcp, size) ({ \ argument 81 BUG_ON((uintptr_t)(dest_buf) & (FNCPY_ALIGN - 1) || \ 84 memcpy(dest_buf, (void const *)(__funcp_address & ~1), size); \ 85 flush_icache_range((unsigned long)(dest_buf), \ 86 (unsigned long)(dest_buf) + (size)); \ 89 : "0" ((uintptr_t)(dest_buf) | (__funcp_address & 1))); \
|
/linux-4.1.27/crypto/async_tx/ |
D | async_memcpy.c | 85 void *dest_buf, *src_buf; in async_memcpy() local 91 dest_buf = kmap_atomic(dest) + dest_offset; in async_memcpy() 94 memcpy(dest_buf, src_buf, len); in async_memcpy() 97 kunmap_atomic(dest_buf); in async_memcpy()
|
D | async_xor.c | 119 void *dest_buf; in do_sync_xor() local 133 dest_buf = page_address(dest) + offset; in do_sync_xor() 136 memset(dest_buf, 0, len); in do_sync_xor() 141 xor_blocks(xor_src_cnt, len, dest_buf, &srcs[src_off]); in do_sync_xor()
|