Home
last modified time | relevance | path

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

/linux/arch/microblaze/lib/
H A 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 …]
H A 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/drivers/net/wireless/ath/ath9k/
H A Dath9k.h313 struct ath_rxbuf *buf_hold; member