Home
last modified time | relevance | path

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

/openbmc/linux/arch/nios2/lib/
H A Dmemcpy.c94 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()
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()
[all …]
/openbmc/linux/arch/parisc/lib/
H A Dmemset.c5 #define OPSIZ (BITS_PER_LONG/8) macro
22 if (OPSIZ > 4) in memset()
28 while (dstp % OPSIZ != 0) in memset()
36 xlen = len / (OPSIZ * 8); in memset()
47 dstp += 8 * OPSIZ; in memset()
50 len %= OPSIZ * 8; in memset()
53 xlen = len / OPSIZ; in memset()
57 dstp += OPSIZ; in memset()
60 len %= OPSIZ; in memset()
/openbmc/u-boot/arch/x86/lib/
H A Dstring.c73 #define OPSIZ (sizeof(op_t)) macro
114 len -= (-dstp) % OPSIZ; in memcpy()
115 BYTE_COPY_FWD(dstp, srcp, (-dstp) % OPSIZ); in memcpy()
/openbmc/linux/net/can/
H A Dbcm.c168 #define OPSIZ sizeof(struct bcm_op) macro
920 op = kzalloc(OPSIZ, GFP_KERNEL); in bcm_tx_setup()
1098 op = kzalloc(OPSIZ, GFP_KERNEL); in bcm_rx_setup()