Lines Matching refs:length
62 (void *dst0, const void *src0, size_t length) in memcpy() argument
67 bcopy(const void *src0, void *dst0, size_t length) in memcpy()
74 if (length == 0 || dst == src) /* nothing to do */ in memcpy()
93 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) in memcpy()
94 t = length; in memcpy()
97 length -= t; in memcpy()
103 t = length / wsize; in memcpy()
105 t = length & wmask; in memcpy()
113 src += length; in memcpy()
114 dst += length; in memcpy()
117 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize) in memcpy()
118 t = length; in memcpy()
121 length -= t; in memcpy()
124 t = length / wsize; in memcpy()
126 t = length & wmask; in memcpy()