Searched refs:dst (Results 1 – 5 of 5) sorted by relevance
/lib/ |
D | iomap.c | 145 static inline void mmio_insb(void __iomem *addr, u8 *dst, int count) in mmio_insb() argument 149 *dst = data; in mmio_insb() 150 dst++; in mmio_insb() 153 static inline void mmio_insw(void __iomem *addr, u16 *dst, int count) in mmio_insw() argument 157 *dst = data; in mmio_insw() 158 dst++; in mmio_insw() 161 static inline void mmio_insl(void __iomem *addr, u32 *dst, int count) in mmio_insl() argument 165 *dst = data; in mmio_insl() 166 dst++; in mmio_insl() 195 void ioread8_rep(void __iomem *addr, void *dst, unsigned long count) in ioread8_rep() argument [all …]
|
D | bitmap.c | 87 void __bitmap_complement(unsigned long *dst, const unsigned long *src, int bits) in __bitmap_complement() argument 91 dst[k] = ~src[k]; in __bitmap_complement() 94 dst[k] = ~src[k] & BITMAP_LAST_WORD_MASK(bits); in __bitmap_complement() 109 void __bitmap_shift_right(unsigned long *dst, in __bitmap_shift_right() argument 132 dst[k] = upper << (BITS_PER_LONG - rem) | lower >> rem; in __bitmap_shift_right() 134 dst[k] &= mask; in __bitmap_shift_right() 137 memset(&dst[lim - off], 0, off*sizeof(unsigned long)); in __bitmap_shift_right() 154 void __bitmap_shift_left(unsigned long *dst, in __bitmap_shift_left() argument 173 dst[k + off] = lower >> (BITS_PER_LONG - rem) | upper << rem; in __bitmap_shift_left() 175 dst[k + off] &= (1UL << left) - 1; in __bitmap_shift_left() [all …]
|
D | iomap_copy.c | 35 u32 __iomem *dst = to; in __iowrite32_copy() local 40 __raw_writel(*src++, dst++); in __iowrite32_copy() 59 u64 __iomem *dst = to; in __iowrite64_copy() local 64 __raw_writeq(*src++, dst++); in __iowrite64_copy()
|
D | textsearch.c | 199 static unsigned int get_linear_data(unsigned int consumed, const u8 **dst, in get_linear_data() argument 206 *dst = st->data + consumed; in get_linear_data()
|
/lib/lzo/ |
D | lzo1x_decompress.c | 25 #define COPY4(dst, src) \ argument 26 put_unaligned(get_unaligned((const u32 *)(src)), (u32 *)(dst))
|