Home | History | Annotate | Download | only in string

Lines Matching defs:bytes

86 /* This code is called when aligning a pointer, there are remaining bytes
106 /* This code is called to copy only remaining bytes within word or doubleword */
148 unsigned long words, unsigned long bytes, void *ret)
194 /* mop up any remaining bytes. */
195 return do_bytes_remaining (a, b, bytes, ret);
201 unsigned long words, unsigned long bytes, void *ret)
229 /* mop up any remaining bytes */
230 return do_bytes_remaining (a, b, bytes, ret);
238 unsigned long words, unsigned long bytes, void *ret)
284 /* mop up any remaining bytes. */
285 return do_bytes_remaining (a, b, bytes, ret);
291 unsigned long bytes, words;
302 bytes = ((unsigned long) b) % sizeof (reg_t);
303 if (bytes) {
304 bytes = sizeof (reg_t) - bytes;
305 if (bytes > len)
306 bytes = len;
307 do_bytes (a, b, bytes, ret);
308 if (len == bytes)
310 len -= bytes;
311 a = (void *) (((unsigned char *) a) + bytes);
312 b = (const void *) (((unsigned char *) b) + bytes);
317 bytes = len % sizeof (reg_t);
320 return aligned_words (a, b, words, bytes, ret);
323 return aligned_words (a, b, words, bytes, ret);
326 return unaligned_words (a, b, words, bytes, ret);