Searched refs:buf_hold (Results 1 – 5 of 5) sorted by relevance
63 unsigned value, buf_hold; in memcpy() local97 buf_hold = *i_src++ << 8; in memcpy()101 *i_dst++ = buf_hold | value >> 24; in memcpy()102 buf_hold = value << 8; in memcpy()106 buf_hold = (*i_src++ & 0xFFFFFF00) >> 8; in memcpy()110 *i_dst++ = buf_hold | ((value & 0xFF) << 24); in memcpy()111 buf_hold = (value & 0xFFFFFF00) >> 8; in memcpy()123 buf_hold = *i_src++ << 16; in memcpy()127 *i_dst++ = buf_hold | value >> 16; in memcpy()128 buf_hold = value << 16; in memcpy()[all …]
84 unsigned value, buf_hold; in memmove() local119 buf_hold = *--i_src >> 24; in memmove()123 *--i_dst = buf_hold << 8 | value; in memmove()124 buf_hold = value >> 24; in memmove()128 buf_hold = (*--i_src & 0xFF) << 24; in memmove()132 *--i_dst = buf_hold | in memmove()134 buf_hold = (value & 0xFF) << 24; in memmove()146 buf_hold = *--i_src >> 16; in memmove()150 *--i_dst = buf_hold << 16 | value; in memmove()151 buf_hold = value >> 16; 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()453 sc->rx.buf_hold = NULL; in ath_startrecv()709 if (bf == sc->rx.buf_hold) in ath_get_next_rx_buf()
311 struct ath_rxbuf *buf_hold; member
432 __field(int, buf_hold)449 __entry->buf_hold = atomic_read(&bip->bli_buf->b_hold);460 __entry->buf_hold,