Lines Matching refs:bytes
148 unsigned long words, unsigned long bytes, void *ret) in unaligned_words() argument
195 return do_bytes_remaining (a, b, bytes, ret); in unaligned_words()
201 unsigned long words, unsigned long bytes, void *ret) in unaligned_words() argument
230 return do_bytes_remaining (a, b, bytes, ret); in unaligned_words()
238 unsigned long words, unsigned long bytes, void *ret) in aligned_words() argument
285 return do_bytes_remaining (a, b, bytes, ret); in aligned_words()
291 unsigned long bytes, words; in memcpy() local
302 bytes = ((unsigned long) b) % sizeof (reg_t); in memcpy()
303 if (bytes) { in memcpy()
304 bytes = sizeof (reg_t) - bytes; in memcpy()
305 if (bytes > len) in memcpy()
306 bytes = len; in memcpy()
307 do_bytes (a, b, bytes, ret); in memcpy()
308 if (len == bytes) in memcpy()
310 len -= bytes; in memcpy()
311 a = (void *) (((unsigned char *) a) + bytes); in memcpy()
312 b = (const void *) (((unsigned char *) b) + bytes); in memcpy()
317 bytes = len % sizeof (reg_t); in memcpy()
320 return aligned_words (a, b, words, bytes, ret); in memcpy()
323 return aligned_words (a, b, words, bytes, ret); in memcpy()
326 return unaligned_words (a, b, words, bytes, ret); in memcpy()