Home
last modified time | relevance | path

Searched refs:buf_hold (Results 1 – 5 of 5) sorted by relevance

/linux-5.19.10/arch/microblaze/lib/
Dmemcpy.c50 unsigned value, buf_hold; in memcpy() local
86 buf_hold = *i_src++ << 8; in memcpy()
90 *i_dst++ = buf_hold | value >> 24; in memcpy()
91 buf_hold = value << 8; in memcpy()
95 buf_hold = (*i_src++ & 0xFFFFFF00) >> 8; in memcpy()
99 *i_dst++ = buf_hold | ((value & 0xFF) << 24); in memcpy()
100 buf_hold = (value & 0xFFFFFF00) >> 8; in memcpy()
112 buf_hold = *i_src++ << 16; in memcpy()
116 *i_dst++ = buf_hold | value >> 16; in memcpy()
117 buf_hold = value << 16; in memcpy()
[all …]
Dmemmove.c60 unsigned value, buf_hold; in memmove() local
97 buf_hold = *--i_src >> 24; in memmove()
101 *--i_dst = buf_hold << 8 | value; in memmove()
102 buf_hold = value >> 24; in memmove()
106 buf_hold = (*--i_src & 0xFF) << 24; in memmove()
110 *--i_dst = buf_hold | in memmove()
112 buf_hold = (value & 0xFF) << 24; in memmove()
124 buf_hold = *--i_src >> 16; in memmove()
128 *--i_dst = buf_hold << 16 | value; in memmove()
129 buf_hold = value >> 16; in memmove()
[all …]
/linux-5.19.10/drivers/net/wireless/ath/ath9k/
Drecv.c74 if (sc->rx.buf_hold) in ath_rx_buf_relink()
75 ath_rx_buf_link(sc, sc->rx.buf_hold, flush); in ath_rx_buf_relink()
77 sc->rx.buf_hold = bf; in ath_rx_buf_relink()
454 sc->rx.buf_hold = NULL; in ath_startrecv()
710 if (bf == sc->rx.buf_hold) in ath_get_next_rx_buf()
Dath9k.h312 struct ath_rxbuf *buf_hold; member
/linux-5.19.10/fs/xfs/
Dxfs_trace.h569 __field(int, buf_hold)
586 __entry->buf_hold = atomic_read(&bip->bli_buf->b_hold);
597 __entry->buf_hold,