Searched refs:OPSIZ (Results 1 - 3 of 3) sorted by relevance

/linux-4.4.14/arch/parisc/lib/
H A Dmemset.c24 #define OPSIZ (BITS_PER_LONG/8) macro
41 if (OPSIZ > 4) memset()
47 while (dstp % OPSIZ != 0) memset()
55 xlen = len / (OPSIZ * 8); memset()
66 dstp += 8 * OPSIZ; memset()
69 len %= OPSIZ * 8; memset()
71 /* Write 1 `op_t' per iteration until less than OPSIZ bytes remain. */ memset()
72 xlen = len / OPSIZ; memset()
76 dstp += OPSIZ; memset()
79 len %= OPSIZ; memset()
/linux-4.4.14/arch/nios2/lib/
H A Dmemcpy.c26 #define OPSIZ (sizeof(op_t)) macro
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; _wordcopy_fwd_aligned()
95 dstp += 8 * OPSIZ; _wordcopy_fwd_aligned()
101 srcp += OPSIZ; _wordcopy_fwd_aligned()
102 dstp += OPSIZ; _wordcopy_fwd_aligned()
121 sh_1 = 8 * (srcp % OPSIZ); _wordcopy_fwd_dest_aligned()
122 sh_2 = 8 * OPSIZ - sh_1; _wordcopy_fwd_dest_aligned()
126 srcp &= -OPSIZ; _wordcopy_fwd_dest_aligned()
128 srcp += OPSIZ; _wordcopy_fwd_dest_aligned()
143 srcp += 4 * OPSIZ; _wordcopy_fwd_dest_aligned()
144 dstp += 4 * OPSIZ; _wordcopy_fwd_dest_aligned()
154 srcp += OPSIZ; _wordcopy_fwd_dest_aligned()
155 dstp += OPSIZ; _wordcopy_fwd_dest_aligned()
170 len -= (-dstp) % OPSIZ; memcpy()
171 BYTE_COPY_FWD(dstp, srcp, (-dstp) % OPSIZ); memcpy()
/linux-4.4.14/net/can/
H A Dbcm.c140 #define OPSIZ sizeof(struct bcm_op) macro
882 op = kzalloc(OPSIZ, GFP_KERNEL); bcm_tx_setup()
1045 op = kzalloc(OPSIZ, GFP_KERNEL); bcm_rx_setup()

Completed in 1351 milliseconds