Lines Matching refs:ret
84 if(!len) return ret; \
90 do_bytes (void *a, const void *b, unsigned long len, void *ret) in do_bytes() argument
103 return ret; in do_bytes()
108 do_bytes_remaining (void *a, const void *b, unsigned long len, void *ret) in do_bytes_remaining() argument
133 return ret; in do_bytes_remaining()
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()
292 void *ret = a; in memcpy() local
307 do_bytes (a, b, bytes, ret); in memcpy()
309 return ret; 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()