Home
last modified time | relevance | path

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

/Linux-v5.4/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()
/Linux-v5.4/drivers/gpu/drm/vkms/
Dvkms_composer.c64 int i, j, j_dst, i_dst; in blend() local
78 for (i = y_src, i_dst = y_dst; i < y_limit; ++i) { in blend()
81 + (i_dst * dest_composer->pitch) in blend()
90 i_dst++; in blend()