Searched refs:dstp (Results 1 – 4 of 4) sorted by relevance
/string/ |
A D | memset.c | 47 ((byte *) dstp)[0] = c; in MEMSET() 48 dstp += 1; in MEMSET() 56 ((op_t *) dstp)[0] = cccc; in MEMSET() 57 ((op_t *) dstp)[1] = cccc; in MEMSET() 58 ((op_t *) dstp)[2] = cccc; in MEMSET() 59 ((op_t *) dstp)[3] = cccc; in MEMSET() 60 ((op_t *) dstp)[4] = cccc; in MEMSET() 61 ((op_t *) dstp)[5] = cccc; in MEMSET() 64 dstp += 8 * OPSIZ; in MEMSET() 74 dstp += OPSIZ; in MEMSET() [all …]
|
A D | wordcopy.c | 42 dstp -= 7 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 48 dstp -= 6 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 54 dstp -= 5 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 60 dstp -= 4 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 66 dstp -= 3 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 72 dstp -= 2 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 81 dstp -= 1 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 86 dstp -= 0 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 121 dstp += 8 * OPSIZ; in WORDCOPY_FWD_ALIGNED() 163 dstp -= 3 * OPSIZ; in WORDCOPY_FWD_DEST_ALIGNED() [all …]
|
A D | memmove.c | 45 unsigned long int dstp = (long int) dest; in MEMMOVE() local 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() [all …]
|
A D | memcpy.c | 30 unsigned long int dstp = (long int) dstpp; in MEMCPY() local 39 len -= (-dstp) % OPSIZ; in MEMCPY() 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 11 milliseconds