Home
last modified time | relevance | path

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

/freebsd/sys/contrib/ncsw/etc/
H A Dmemcpy.c67 uint8_t *p_Src8; in MemCpy32() local
70 p_Src8 = (uint8_t*)(pSrc); in MemCpy32()
76 while((PTR_TO_UINT(p_Src8) & 3) && size) /* (pSrc mod 4) > 0 and size > 0 */ in MemCpy32()
78 *p_Dst8++ = *p_Src8++; in MemCpy32()
85 *p_Dst8++ = *p_Src8++; in MemCpy32()
90 leftAlign = (uint32_t)((PTR_TO_UINT(p_Src8) & 3) << 3); /* leftAlign = (pSrc mod 4)*8 */ in MemCpy32()
97 p_Src32 = (uint32_t*)(p_Src8); in MemCpy32()
104 p_Src8 = (uint8_t*)(p_Src32); in MemCpy32()
110 p_Src32 = (uint32_t*)(p_Src8 - (leftAlign >> 3)); in MemCpy32()
123 p_Src8 = (uint8_t*)(p_Src32) - 4 + (leftAlign >> 3); in MemCpy32()
[all …]