Home
last modified time | relevance | path

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

/linux-4.1.27/arch/nios2/lib/
Dmemcpy.c26 #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()
[all …]
/linux-4.1.27/arch/parisc/lib/
Dmemset.c24 #define OPSIZ (BITS_PER_LONG/8) macro
41 if (OPSIZ > 4) in memset()
47 while (dstp % OPSIZ != 0) in memset()
55 xlen = len / (OPSIZ * 8); in memset()
66 dstp += 8 * OPSIZ; in memset()
69 len %= OPSIZ * 8; in memset()
72 xlen = len / OPSIZ; in memset()
76 dstp += OPSIZ; in memset()
79 len %= OPSIZ; in memset()
/linux-4.1.27/net/can/
Dbcm.c135 #define OPSIZ sizeof(struct bcm_op) macro
877 op = kzalloc(OPSIZ, GFP_KERNEL); in bcm_tx_setup()
1040 op = kzalloc(OPSIZ, GFP_KERNEL); in bcm_rx_setup()