Lines Matching refs:reg_t
62 typedef unsigned long reg_t; typedef
65 reg_t B0:8, B1:8, B2:8, B3:8;
68 typedef unsigned long long reg_t; typedef
71 reg_t B0:8, B1:8, B2:8, B3:8, B4:8, B5:8, B6:8, B7:8;
77 reg_t v;
114 bw.v = *((reg_t*) b); in do_bytes_remaining()
142 reg_t uli;
147 unaligned_words (struct ulw *a, const reg_t * b, in unaligned_words()
157 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; in unaligned_words()
158 reg_t y4 = b[4], y5 = b[5], y6 = b[6], y7 = b[7]; in unaligned_words()
177 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; in unaligned_words()
200 unaligned_words (reg_t * a, const reg_t * b, in unaligned_words()
208 bw.v = *((reg_t*) b); in unaligned_words()
237 aligned_words (reg_t * a, const reg_t * b, in aligned_words()
247 reg_t x0 = b[0], x1 = b[1], x2 = b[2], x3 = b[3]; in aligned_words()
248 reg_t x4 = b[4], x5 = b[5], x6 = b[6], x7 = b[7]; in aligned_words()
267 reg_t x0 = b[0], x1 = b[1], x2 = b[2], x3 = b[3]; in aligned_words()
295 if (len < sizeof (reg_t) * 4) { in memcpy()
302 bytes = ((unsigned long) b) % sizeof (reg_t); in memcpy()
304 bytes = sizeof (reg_t) - bytes; in memcpy()
316 words = len / sizeof (reg_t); in memcpy()
317 bytes = len % sizeof (reg_t); in memcpy()
322 if (((unsigned long) a) % sizeof (reg_t) == 0) { in memcpy()