• Home
  • Raw
  • Download

Lines Matching refs:b

78   bits_t b;  member
82 a[i] = bw.b.B##i; \
90 do_bytes (void *a, const void *b, unsigned long len, void *ret) in do_bytes() argument
93 unsigned char *y = (unsigned char *) b; in do_bytes()
108 do_bytes_remaining (void *a, const void *b, unsigned long len, void *ret) in do_bytes_remaining() argument
114 bw.v = *((reg_t*) b); in do_bytes_remaining()
147 unaligned_words (struct ulw *a, const reg_t * b, in unaligned_words() argument
156 PREFETCH (b + 8); 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()
168 b += 8; in unaligned_words()
176 PREFETCH (b + 4); in unaligned_words()
177 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; in unaligned_words()
183 b += 4; in unaligned_words()
189 a->uli = *b; in unaligned_words()
191 b += 1; in unaligned_words()
195 return do_bytes_remaining (a, b, bytes, ret); in unaligned_words()
200 unaligned_words (reg_t * a, const reg_t * b, in unaligned_words() argument
208 bw.v = *((reg_t*) b); in unaligned_words()
211 x[0] = bw.b.B0; in unaligned_words()
212 x[1] = bw.b.B1; in unaligned_words()
213 x[2] = bw.b.B2; in unaligned_words()
214 x[3] = bw.b.B3; in unaligned_words()
215 x[4] = bw.b.B4; in unaligned_words()
216 x[5] = bw.b.B5; in unaligned_words()
217 x[6] = bw.b.B6; in unaligned_words()
218 x[7] = bw.b.B7; in unaligned_words()
220 x[0] = bw.b.B0; in unaligned_words()
221 x[1] = bw.b.B1; in unaligned_words()
222 x[2] = bw.b.B2; in unaligned_words()
223 x[3] = bw.b.B3; in unaligned_words()
226 b += 1; in unaligned_words()
230 return do_bytes_remaining (a, b, bytes, ret); in unaligned_words()
237 aligned_words (reg_t * a, const reg_t * b, in aligned_words() argument
246 PREFETCH (b + 8); 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()
258 b += 8; in aligned_words()
266 PREFETCH (b + 4); in aligned_words()
267 reg_t x0 = b[0], x1 = b[1], x2 = b[2], x3 = b[3]; in aligned_words()
273 b += 4; in aligned_words()
279 *a = *b; in aligned_words()
281 b += 1; in aligned_words()
285 return do_bytes_remaining (a, b, bytes, ret); in aligned_words()
289 memcpy (void *a, const void *b, size_t len) __overloadable in memcpy() argument
296 return do_bytes (a, b, len, a); in memcpy()
302 bytes = ((unsigned long) b) % sizeof (reg_t); in memcpy()
307 do_bytes (a, b, bytes, ret); in memcpy()
312 b = (const void *) (((unsigned char *) b) + bytes); in memcpy()
320 return aligned_words (a, b, words, bytes, ret); in memcpy()
323 return aligned_words (a, b, words, bytes, ret); in memcpy()
326 return unaligned_words (a, b, words, bytes, ret); in memcpy()