Lines Matching defs:OPSIZ
26 #define OPSIZ (sizeof(op_t))
48 the assumption that DST_BP is aligned on an OPSIZ multiple. If
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;
95 dstp += 8 * OPSIZ;
101 srcp += OPSIZ;
102 dstp += OPSIZ;
121 sh_1 = 8 * (srcp % OPSIZ);
122 sh_2 = 8 * OPSIZ - sh_1;
126 srcp &= -OPSIZ;
128 srcp += OPSIZ;
143 srcp += 4 * OPSIZ;
144 dstp += 4 * OPSIZ;
154 srcp += OPSIZ;
155 dstp += OPSIZ;
170 len -= (-dstp) % OPSIZ;
171 BYTE_COPY_FWD(dstp, srcp, (-dstp) % OPSIZ);