Lines Matching refs:OPSIZ
26 #define OPSIZ (sizeof(op_t)) macro
55 if (src_bp % OPSIZ == 0) \
56 _wordcopy_fwd_aligned(dst_bp, src_bp, (nbytes) / OPSIZ);\
58 _wordcopy_fwd_dest_aligned(dst_bp, src_bp, (nbytes) / OPSIZ);\
59 src_bp += (nbytes) & -OPSIZ; \
60 dst_bp += (nbytes) & -OPSIZ; \
61 (nbytes_left) = (nbytes) % OPSIZ; \
94 srcp += 8 * OPSIZ; in _wordcopy_fwd_aligned()
95 dstp += 8 * OPSIZ; in _wordcopy_fwd_aligned()
101 srcp += OPSIZ; in _wordcopy_fwd_aligned()
102 dstp += OPSIZ; in _wordcopy_fwd_aligned()
121 sh_1 = 8 * (srcp % OPSIZ); in _wordcopy_fwd_dest_aligned()
122 sh_2 = 8 * OPSIZ - sh_1; in _wordcopy_fwd_dest_aligned()
126 srcp &= -OPSIZ; in _wordcopy_fwd_dest_aligned()
128 srcp += OPSIZ; in _wordcopy_fwd_dest_aligned()
143 srcp += 4 * OPSIZ; in _wordcopy_fwd_dest_aligned()
144 dstp += 4 * OPSIZ; in _wordcopy_fwd_dest_aligned()
154 srcp += OPSIZ; in _wordcopy_fwd_dest_aligned()
155 dstp += OPSIZ; in _wordcopy_fwd_dest_aligned()
170 len -= (-dstp) % OPSIZ; in memcpy()
171 BYTE_COPY_FWD(dstp, srcp, (-dstp) % OPSIZ); in memcpy()