Lines Matching refs:reg_t
62 typedef unsigned long reg_t; typedef
65 reg_t B0:8, B1:8, B2:8, B3:8;
70 typedef unsigned long long reg_t; typedef
73 reg_t B0:8, B1:8, B2:8, B3:8, B4:8, B5:8, B6:8, B7:8;
81 reg_t v;
89 static int __attribute__ ((noinline)) do_by_bitfields (reg_t a, reg_t b) in do_by_bitfields()
135 reg_t uli;
139 static int unaligned_words (const struct ulw *a, const reg_t *b, in unaligned_words()
144 const reg_t *pref_ptr = (const reg_t *) (((uintptr_t) b + 31) & ~31); in unaligned_words()
145 const reg_t *pref_ptr_a = (const reg_t *) (((uintptr_t) a + 31) & ~31); in unaligned_words()
157 reg_t x0 = a[0].uli, x1 = a[1].uli; in unaligned_words()
158 reg_t x2 = a[2].uli, x3 = a[3].uli; in unaligned_words()
159 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; in unaligned_words()
186 reg_t x0 = a[0].uli, x1 = a[1].uli; in unaligned_words()
187 reg_t x2 = a[2].uli, x3 = a[3].uli; in unaligned_words()
188 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; in unaligned_words()
203 reg_t x0 = a->uli; in unaligned_words()
204 reg_t y0 = *b; in unaligned_words()
216 static int unaligned_words (const reg_t *a, const reg_t *b, in unaligned_words()
219 return do_bytes (a, b, (sizeof (reg_t) * words) + bytes); in unaligned_words()
225 static int aligned_words (const reg_t *a, const reg_t *b, in aligned_words()
230 const reg_t *pref_ptr = (const reg_t *) (((uintptr_t) b + 31) & ~31); in aligned_words()
231 const reg_t *pref_ptr_a = (const reg_t *) (((uintptr_t) a + 31) & ~31); in aligned_words()
246 reg_t x0 = a[0], x1 = a[1], x2 = a[2], x3 = a[3]; in aligned_words()
247 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; in aligned_words()
284 reg_t x0 = a[0], x1 = a[1], x2 = a[2], x3 = a[3]; in aligned_words()
285 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; in aligned_words()
300 reg_t x0 = *a; in aligned_words()
301 reg_t y0 = *b; in aligned_words()
317 if (len < sizeof (reg_t) * 4) { in memcmp()
324 bytes = ((unsigned long) b) % sizeof (reg_t); in memcmp()
327 bytes = sizeof (reg_t) - bytes; in memcmp()
339 words = len / sizeof (reg_t); in memcmp()
340 bytes = len % sizeof (reg_t); in memcmp()
346 if (((unsigned long) a) % sizeof (reg_t) == 0) { in memcmp()