Searched refs:i_dst (Results 1 - 2 of 2) sorted by relevance

/linux-4.1.27/arch/microblaze/lib/
H A Dmemcpy.c60 uint32_t *i_dst; memcpy() local
79 i_dst = (void *)dst; memcpy()
88 *i_dst++ = *i_src++; memcpy()
101 *i_dst++ = buf_hold | value >> 24; memcpy()
110 *i_dst++ = buf_hold | ((value & 0xFF) << 24); memcpy()
127 *i_dst++ = buf_hold | value >> 16; memcpy()
136 *i_dst++ = buf_hold | ((value & 0xFFFF) << 16); memcpy()
153 *i_dst++ = buf_hold | value >> 8; memcpy()
162 *i_dst++ = buf_hold | ((value & 0xFFFFFF) << 8); memcpy()
171 dst = (void *)i_dst; memcpy()
H A Dmemmove.c63 uint32_t *i_dst; memmove() local
101 i_dst = (void *)dst; memmove()
110 *--i_dst = *--i_src; memmove()
123 *--i_dst = buf_hold << 8 | value; memmove()
132 *--i_dst = buf_hold | memmove()
150 *--i_dst = buf_hold << 16 | value; memmove()
159 *--i_dst = buf_hold | memmove()
177 *--i_dst = buf_hold << 24 | value; memmove()
186 *--i_dst = buf_hold | memmove()
196 dst = (void *)i_dst; memmove()

Completed in 105 milliseconds