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

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

Completed in 168 milliseconds