Searched refs:buf_hold (Results 1 – 2 of 2) 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 …]
Completed in 7 milliseconds