Lines Matching refs:length
72 memcpy(void *dst0, const void *src0, size_t length) in memcpy() argument
81 if (length == 0 || dst == src) { /* nothing to do */ in memcpy()
102 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) { in memcpy()
103 t = length; in memcpy()
108 length -= t; in memcpy()
114 t = length / wsize; in memcpy()
117 t = length & wmask; in memcpy()
125 src += length; in memcpy()
126 dst += length; in memcpy()
130 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize) { in memcpy()
131 t = length; in memcpy()
136 length -= t; in memcpy()
139 t = length / wsize; in memcpy()
142 t = length & wmask; in memcpy()
152 (bcopy)(const void *src0, void *dst0, size_t length)
155 memcpy(dst0, src0, length);