Lines Matching refs:dstp
45 unsigned long int dstp = (long int) dest; in MEMMOVE() local
50 if (dstp - srcp >= len) /* *Unsigned* compare! */ in MEMMOVE()
61 len -= (-dstp) % OPSIZ; 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()
87 dstp += len; in MEMMOVE()
93 len -= dstp % OPSIZ; 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()