Home | History | Annotate | Download | only in string

Lines Matching refs:reg_t

62 typedef unsigned long reg_t;
65 reg_t B0:8, B1:8, B2:8, B3:8;
68 typedef unsigned long long reg_t;
71 reg_t B0:8, B1:8, B2:8, B3:8, B4:8, B5:8, B6:8, B7:8;
77 reg_t v;
129 bw.v = *((reg_t*) b);
157 reg_t uli;
162 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; \
163 reg_t y4 = b[4], y5 = b[5], y6 = b[6], y7 = b[7]; \
176 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; \
185 unaligned_words_forward (struct ulw *a, const reg_t * b,
224 unaligned_words_backward (struct ulw *a, const reg_t * b,
265 unaligned_words_forward (reg_t * a, const reg_t * b,
268 return do_bytes_aligned (a, b, (sizeof (reg_t) * words) + bytes, ret);
272 unaligned_words_backward (reg_t * a, const reg_t * b,
275 return do_bytes_backward (a, b, (sizeof (reg_t) * words) + bytes, ret);
285 reg_t x0 = b[0], x1 = b[1], x2 = b[2], x3 = b[3]; \
286 reg_t x4 = b[4], x5 = b[5], x6 = b[6], x7 = b[7]; \
299 reg_t x0 = b[0], x1 = b[1], x2 = b[2], x3 = b[3]; \
307 aligned_words_forward (reg_t * a, const reg_t * b,
347 aligned_words_backward (reg_t * a, const reg_t * b,
397 if (length < sizeof (reg_t) * 4) {
404 bytes = ((unsigned long) src0) % sizeof (reg_t);
406 bytes = sizeof (reg_t) - bytes;
418 words = length / sizeof (reg_t);
419 bytes = length % sizeof (reg_t);
424 if (((unsigned long) dst0) % sizeof (reg_t) == 0) {
436 if (length < sizeof (reg_t) * 4) {
443 bytes = ((unsigned long) src0) % sizeof (reg_t);
455 words = length / sizeof (reg_t);
456 bytes = length % sizeof (reg_t);
461 if (((unsigned long) dst0) % sizeof (reg_t) == 0) {