Searched refs:i_dst (Results 1 – 3 of 3) sorted by relevance
60 uint32_t *i_dst; in memcpy() local79 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()
63 uint32_t *i_dst; in memmove() local101 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()
64 int i, j, j_dst, i_dst; in blend() local78 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()