Lines Matching refs:OPSIZ
62 #define OPSIZ (sizeof (op_t)) macro
120 if (src_bp % OPSIZ == 0) \
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; \
142 if (src_ep % OPSIZ == 0) \
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; \