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

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

Completed in 141 milliseconds