Searched refs:srcp (Results 1 – 3 of 3) sorted by relevance
/string/ |
A D | wordcopy.c | 41 srcp -= 6 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 47 srcp -= 5 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 53 srcp -= 4 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 59 srcp -= 3 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 65 srcp -= 2 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 71 srcp -= 1 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 80 srcp -= 0 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 85 srcp -=-1 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 155 srcp &= -OPSIZ; in WORDCOPY_FWD_DEST_ALIGNED() 352 srcp &= -OPSIZ; in WORDCOPY_BWD_DEST_ALIGNED() [all …]
|
A D | memmove.c | 46 unsigned long int srcp = (long int) src; in MEMMOVE() local 50 if (dstp - srcp >= len) /* *Unsigned* compare! */ in MEMMOVE() 62 BYTE_COPY_FWD (dstp, srcp, (-dstp) % OPSIZ); in MEMMOVE() 67 PAGE_COPY_FWD_MAYBE (dstp, srcp, len, len); in MEMMOVE() 74 WORD_COPY_FWD (dstp, srcp, len, len); in MEMMOVE() 80 BYTE_COPY_FWD (dstp, srcp, len); in MEMMOVE() 86 srcp += len; in MEMMOVE() 94 BYTE_COPY_BWD (dstp, srcp, dstp % OPSIZ); in MEMMOVE() 101 WORD_COPY_BWD (dstp, srcp, len, len); in MEMMOVE() 107 BYTE_COPY_BWD (dstp, srcp, len); in MEMMOVE()
|
A D | memcpy.c | 31 unsigned long int srcp = (long int) srcpp; in MEMCPY() local 40 BYTE_COPY_FWD (dstp, srcp, (-dstp) % OPSIZ); in MEMCPY() 45 PAGE_COPY_FWD_MAYBE (dstp, srcp, len, len); in MEMCPY() 51 WORD_COPY_FWD (dstp, srcp, len, len); in MEMCPY() 57 BYTE_COPY_FWD (dstp, srcp, len); in MEMCPY()
|
Completed in 10 milliseconds