Searched refs:tmp_from (Results 1 – 2 of 2) sorted by relevance
30 unsigned char *tmp_from = (unsigned char *)from; in memcpy() local33 tmp_from -= 4; in memcpy()43 tmp1 = *(unsigned long *)(tmp_from+4); in memcpy()44 tmp_from += 8; in memcpy()45 tmp2 = *(unsigned long *)tmp_from; in memcpy()53 tmp_from += 4; in memcpy()55 *(unsigned long *)(tmp_to) = *(unsigned long *)(tmp_from); in memcpy()60 tmp_from += 3; in memcpy()63 *++tmp_to = *++tmp_from; in memcpy()73 *(tmp_to+4) = *(tmp_from+4); in memcpy()[all …]
29 unsigned char *tmp_from = (unsigned char *)from; in memmove() local31 if (tmp_from >= (unsigned char *)to) in memmove()34 tmp_from += n; in memmove()44 tmp1 = *(unsigned long *)(tmp_from-4); in memmove()45 tmp_from -= 8; in memmove()46 tmp2 = *(unsigned long *)tmp_from; in memmove()54 *(unsigned long *)(tmp_to-4) = *(unsigned long *)(tmp_from-4); in memmove()55 tmp_from -= 4; in memmove()61 *--tmp_to = *--tmp_from; in memmove()69 *--tmp_to = *--tmp_from; in memmove()
Completed in 2 milliseconds