Lines Matching refs:nbytes
76 #define BYTE_COPY_FWD(dst_bp, src_bp, nbytes) \ argument
79 size_t __nbytes = (nbytes); \
94 #define BYTE_COPY_BWD(dst_ep, src_ep, nbytes) \ argument
97 size_t __nbytes = (nbytes); \
117 #define WORD_COPY_FWD(dst_bp, src_bp, nbytes_left, nbytes) \ argument
121 _wordcopy_fwd_aligned (dst_bp, src_bp, (nbytes) / OPSIZ); \
123 _wordcopy_fwd_dest_aligned (dst_bp, src_bp, (nbytes) / OPSIZ); \
124 src_bp += (nbytes) & -OPSIZ; \
125 dst_bp += (nbytes) & -OPSIZ; \
126 (nbytes_left) = (nbytes) % OPSIZ; \
139 #define WORD_COPY_BWD(dst_ep, src_ep, nbytes_left, nbytes) \ argument
143 _wordcopy_bwd_aligned (dst_ep, src_ep, (nbytes) / OPSIZ); \
145 _wordcopy_bwd_dest_aligned (dst_ep, src_ep, (nbytes) / OPSIZ); \
146 src_ep -= (nbytes) & -OPSIZ; \
147 dst_ep -= (nbytes) & -OPSIZ; \
148 (nbytes_left) = (nbytes) % OPSIZ; \
163 # define PAGE_COPY_FWD_MAYBE(dstp, srcp, nbytes_left, nbytes) \ argument
166 if ((nbytes) >= PAGE_COPY_THRESHOLD \
178 nbytes -= nbytes_before; \
180 PAGE_COPY_FWD (dstp, srcp, nbytes_left, nbytes); \
189 # define PAGE_COPY_FWD_MAYBE(dstp, srcp, nbytes_left, nbytes) /* nada */ argument