Lines Matching refs:len
43 MEMMOVE (a1const void *a1, a2const void *a2, size_t len) in MEMMOVE() argument
50 if (dstp - srcp >= len) /* *Unsigned* compare! */ in MEMMOVE()
55 dest = memcpy (dest, src, len); in MEMMOVE()
58 if (len >= OP_T_THRES) in MEMMOVE()
61 len -= (-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()
87 dstp += len; in MEMMOVE()
90 if (len >= OP_T_THRES) in MEMMOVE()
93 len -= dstp % OPSIZ; in MEMMOVE()
101 WORD_COPY_BWD (dstp, srcp, len, len); in MEMMOVE()
107 BYTE_COPY_BWD (dstp, srcp, len); in MEMMOVE()