Home
last modified time | relevance | path

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

/string/
A Dwordcopy.c41 srcp -= 6 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
42 dstp -= 7 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
47 srcp -= 5 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
48 dstp -= 6 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
53 srcp -= 4 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
54 dstp -= 5 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
59 srcp -= 3 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
60 dstp -= 4 * OPSIZ; in WORDCOPY_FWD_ALIGNED()
155 srcp &= -OPSIZ; in WORDCOPY_FWD_DEST_ALIGNED()
352 srcp &= -OPSIZ; in WORDCOPY_BWD_DEST_ALIGNED()
[all …]
A Dmemcmp.c128 srcp1 -= 2 * OPSIZ; in memcmp_common_alignment()
129 srcp2 -= 2 * OPSIZ; in memcmp_common_alignment()
135 srcp1 -= OPSIZ; in memcmp_common_alignment()
136 srcp2 -= OPSIZ; in memcmp_common_alignment()
148 srcp1 += OPSIZ; in memcmp_common_alignment()
149 srcp2 += OPSIZ; in memcmp_common_alignment()
181 srcp1 += 4 * OPSIZ; in memcmp_common_alignment()
182 srcp2 += 4 * OPSIZ; in memcmp_common_alignment()
212 shr = 8 * OPSIZ - shl; in memcmp_not_common_alignment()
216 srcp1 &= -OPSIZ; in memcmp_not_common_alignment()
[all …]
A Dmemset.c39 if (OPSIZ > 4) in MEMSET()
45 while (dstp % OPSIZ != 0) in MEMSET()
53 xlen = len / (OPSIZ * 8); in MEMSET()
64 dstp += 8 * OPSIZ; in MEMSET()
67 len %= OPSIZ * 8; in MEMSET()
70 xlen = len / OPSIZ; in MEMSET()
74 dstp += OPSIZ; in MEMSET()
77 len %= OPSIZ; in MEMSET()
A Dmemmove.c61 len -= (-dstp) % OPSIZ; in MEMMOVE()
62 BYTE_COPY_FWD (dstp, srcp, (-dstp) % OPSIZ); in MEMMOVE()
93 len -= dstp % OPSIZ; in MEMMOVE()
94 BYTE_COPY_BWD (dstp, srcp, dstp % OPSIZ); in MEMMOVE()
A Dmemcpy.c39 len -= (-dstp) % OPSIZ; in MEMCPY()
40 BYTE_COPY_FWD (dstp, srcp, (-dstp) % OPSIZ); in MEMCPY()

Completed in 10 milliseconds