Home
last modified time | relevance | path

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

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