Searched refs:dst_off (Results 1 – 2 of 2) sorted by relevance
/include/linux/ |
D | highmem.h | 297 static inline void memcpy_page(struct page *dst_page, size_t dst_off, in memcpy_page() argument 304 VM_BUG_ON(dst_off + len > PAGE_SIZE || src_off + len > PAGE_SIZE); in memcpy_page() 305 memcpy(dst + dst_off, src + src_off, len); in memcpy_page() 310 static inline void memmove_page(struct page *dst_page, size_t dst_off, in memmove_page() argument 317 VM_BUG_ON(dst_off + len > PAGE_SIZE || src_off + len > PAGE_SIZE); in memmove_page() 318 memmove(dst + dst_off, src + src_off, len); in memmove_page()
|
/include/linux/mtd/ |
D | rawnand.h | 1578 void nand_extract_bits(u8 *dst, unsigned int dst_off, const u8 *src,
|