Home
last modified time | relevance | path

Searched refs:dst_bp (Results 1 – 2 of 2) sorted by relevance

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/cris/
A Dmemcopy.h33 #define WORD_COPY_FWD(dst_bp, src_bp, nbytes_left, nbytes) \ argument
36 unsigned long enddst_bp = dst_bp + nbytes - (nbytes % OPSIZ); \
38 while (dst_bp < (unsigned long) enddst_bp) \
42 *(op_t *) dst_bp = x; \
43 dst_bp += sizeof x; \
48 #define WORD_COPY_BWD(dst_bp, src_bp, nbytes_left, nbytes) \ argument
51 unsigned long enddst_bp = dst_bp - nbytes + (nbytes % OPSIZ); \
53 while (dst_bp > enddst_bp) \
58 dst_bp -= sizeof x; \
59 *(op_t *) dst_bp = x; \
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/generic/
A Dmemcopy.h76 #define BYTE_COPY_FWD(dst_bp, src_bp, nbytes) \ argument
85 ((byte *) dst_bp)[0] = __x; \
86 dst_bp += 1; \
115 #define WORD_COPY_FWD(dst_bp, src_bp, nbytes_left, nbytes) \ argument
119 _wordcopy_fwd_aligned (dst_bp, src_bp, (nbytes) / OPSIZ); \
121 _wordcopy_fwd_dest_aligned (dst_bp, src_bp, (nbytes) / OPSIZ); \
123 dst_bp += (nbytes) & -OPSIZ; \

Completed in 3 milliseconds