Home | History | Annotate | Download | only in string

Lines Matching defs:bytes

108 /* This code is called when aligning a pointer, there are remaining bytes
140 unsigned long words, unsigned long bytes)
211 /* mop up any remaining bytes. */
212 return do_bytes (a, b, bytes);
217 unsigned long words, unsigned long bytes)
219 return do_bytes (a, b, (sizeof (reg_t) * words) + bytes);
226 unsigned long words, unsigned long bytes)
308 /* mop up any remaining bytes. */
309 return do_bytes (a, b, bytes);
314 unsigned long bytes, words;
324 bytes = ((unsigned long) b) % sizeof (reg_t);
325 if (bytes) {
327 bytes = sizeof (reg_t) - bytes;
328 if (bytes > len)
329 bytes = len;
330 res = do_bytes (a, b, bytes);
331 if (res || len == bytes)
333 len -= bytes;
334 a = (const void *) (((unsigned char *) a) + bytes);
335 b = (const void *) (((unsigned char *) b) + bytes);
340 bytes = len % sizeof (reg_t);
344 return aligned_words (a, b, words, bytes);
347 return aligned_words (a, b, words, bytes);
350 return unaligned_words (a, b, words, bytes);