Searched refs:buf_hold (Results 1 – 5 of 5) sorted by relevance
50 unsigned value, buf_hold; in memcpy() local86 buf_hold = *i_src++ << 8; in memcpy()90 *i_dst++ = buf_hold | value >> 24; in memcpy()91 buf_hold = value << 8; 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()138 buf_hold = *i_src++ << 24; in memcpy()142 *i_dst++ = buf_hold | value >> 8; in memcpy()[all …]
60 unsigned value, buf_hold; in memmove() local97 buf_hold = *--i_src >> 24; in memmove()101 *--i_dst = buf_hold << 8 | value; in memmove()102 buf_hold = value >> 24; in memmove()110 *--i_dst = buf_hold | in memmove()124 buf_hold = *--i_src >> 16; in memmove()129 buf_hold = value >> 16; in memmove()137 *--i_dst = buf_hold | in memmove()151 buf_hold = *--i_src >> 8; in memmove()156 buf_hold = value >> 8; in memmove()[all …]
74 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()
313 struct ath_rxbuf *buf_hold; member
574 __field(int, buf_hold)591 __entry->buf_hold = atomic_read(&bip->bli_buf->b_hold);602 __entry->buf_hold,
Completed in 16 milliseconds