• Home
  • Raw
  • Download

Lines Matching full:above

35                                       const uint16_t *above,  in vpx_highbd_dc_predictor_4x4_neon()  argument
37 const uint16x4_t a = vld1_u16(above); in vpx_highbd_dc_predictor_4x4_neon()
46 const uint16_t *above, in vpx_highbd_dc_left_predictor_4x4_neon() argument
50 (void)above; in vpx_highbd_dc_left_predictor_4x4_neon()
56 const uint16_t *above, in vpx_highbd_dc_top_predictor_4x4_neon() argument
58 const uint16_t sum = dc_sum_4(above); in vpx_highbd_dc_top_predictor_4x4_neon()
66 const uint16_t *above, in vpx_highbd_dc_128_predictor_4x4_neon() argument
69 (void)above; in vpx_highbd_dc_128_predictor_4x4_neon()
91 const uint16_t *above, in vpx_highbd_dc_predictor_8x8_neon() argument
93 const uint16x8_t above_u16 = vld1q_u16(above); in vpx_highbd_dc_predictor_8x8_neon()
103 const uint16_t *above, in vpx_highbd_dc_left_predictor_8x8_neon() argument
107 (void)above; in vpx_highbd_dc_left_predictor_8x8_neon()
113 const uint16_t *above, in vpx_highbd_dc_top_predictor_8x8_neon() argument
115 const uint16_t sum = dc_sum_8(above); in vpx_highbd_dc_top_predictor_8x8_neon()
123 const uint16_t *above, in vpx_highbd_dc_128_predictor_8x8_neon() argument
126 (void)above; in vpx_highbd_dc_128_predictor_8x8_neon()
151 const uint16_t *above, in vpx_highbd_dc_predictor_16x16_neon() argument
153 const uint16x8_t a0 = vld1q_u16(above + 0); in vpx_highbd_dc_predictor_16x16_neon()
154 const uint16x8_t a1 = vld1q_u16(above + 8); in vpx_highbd_dc_predictor_16x16_neon()
167 const uint16_t *above, in vpx_highbd_dc_left_predictor_16x16_neon() argument
171 (void)above; in vpx_highbd_dc_left_predictor_16x16_neon()
177 const uint16_t *above, in vpx_highbd_dc_top_predictor_16x16_neon() argument
179 const uint16_t sum = dc_sum_16(above); in vpx_highbd_dc_top_predictor_16x16_neon()
187 const uint16_t *above, in vpx_highbd_dc_128_predictor_16x16_neon() argument
190 (void)above; in vpx_highbd_dc_128_predictor_16x16_neon()
222 const uint16_t *above, in vpx_highbd_dc_predictor_32x32_neon() argument
224 const uint16x8_t a0 = vld1q_u16(above + 0); in vpx_highbd_dc_predictor_32x32_neon()
225 const uint16x8_t a1 = vld1q_u16(above + 8); in vpx_highbd_dc_predictor_32x32_neon()
226 const uint16x8_t a2 = vld1q_u16(above + 16); in vpx_highbd_dc_predictor_32x32_neon()
227 const uint16x8_t a3 = vld1q_u16(above + 24); in vpx_highbd_dc_predictor_32x32_neon()
246 const uint16_t *above, in vpx_highbd_dc_left_predictor_32x32_neon() argument
250 (void)above; in vpx_highbd_dc_left_predictor_32x32_neon()
256 const uint16_t *above, in vpx_highbd_dc_top_predictor_32x32_neon() argument
258 const uint32_t sum = dc_sum_32(above); in vpx_highbd_dc_top_predictor_32x32_neon()
266 const uint16_t *above, in vpx_highbd_dc_128_predictor_32x32_neon() argument
269 (void)above; in vpx_highbd_dc_128_predictor_32x32_neon()
277 const uint16_t *above, in vpx_highbd_d45_predictor_4x4_neon() argument
284 a0 = vld1q_u16(above); in vpx_highbd_d45_predictor_4x4_neon()
285 a7 = above[7]; in vpx_highbd_d45_predictor_4x4_neon()
287 // [ above[1], ..., above[6], x, x ] in vpx_highbd_d45_predictor_4x4_neon()
289 // [ above[2], ..., above[7], x, x ] in vpx_highbd_d45_predictor_4x4_neon()
292 // d0[0] = AVG3(above[0], above[1], above[2]); in vpx_highbd_d45_predictor_4x4_neon()
294 // d0[5] = AVG3(above[5], above[6], above[7]); in vpx_highbd_d45_predictor_4x4_neon()
303 // stride=2 [ d0[3], d0[4], d0[5], above[7] ] in vpx_highbd_d45_predictor_4x4_neon()
309 // We stored d0[6] above, so fixup into above[7]. in vpx_highbd_d45_predictor_4x4_neon()
314 const uint16_t *above, in vpx_highbd_d45_predictor_8x8_neon() argument
320 a0 = vld1q_u16(above + 0); in vpx_highbd_d45_predictor_8x8_neon()
321 a1 = vld1q_u16(above + 1); in vpx_highbd_d45_predictor_8x8_neon()
322 a7 = vld1q_dup_u16(above + 7); in vpx_highbd_d45_predictor_8x8_neon()
325 // shift in above[7] later, so shift a0 across by one to get the right in vpx_highbd_d45_predictor_8x8_neon()
327 // [ x, above[0], ... , above[6] ] in vpx_highbd_d45_predictor_8x8_neon()
331 // d0[1] = AVG3(above[0], above[1], above[2]); in vpx_highbd_d45_predictor_8x8_neon()
333 // d0[7] = AVG3(above[6], above[7], above[8]); in vpx_highbd_d45_predictor_8x8_neon()
336 // Undo the earlier ext, incrementally shift in duplicates of above[7]. in vpx_highbd_d45_predictor_8x8_neon()
348 const uint16_t *above, in vpx_highbd_d45_predictor_16x16_neon() argument
354 a0 = vld1q_u16(above + 0); in vpx_highbd_d45_predictor_16x16_neon()
355 a1 = vld1q_u16(above + 1); in vpx_highbd_d45_predictor_16x16_neon()
356 a7 = vld1q_u16(above + 7); in vpx_highbd_d45_predictor_16x16_neon()
357 a8 = vld1q_u16(above + 8); in vpx_highbd_d45_predictor_16x16_neon()
358 a9 = vld1q_u16(above + 9); in vpx_highbd_d45_predictor_16x16_neon()
359 a15 = vld1q_dup_u16(above + 15); in vpx_highbd_d45_predictor_16x16_neon()
361 // [ x, above[0], ... , above[6] ] in vpx_highbd_d45_predictor_16x16_neon()
364 // We have one unused lane here to leave room to shift in above[15] in the in vpx_highbd_d45_predictor_16x16_neon()
367 // d0[0][1] = AVG3(above[0], above[1], above[2]); in vpx_highbd_d45_predictor_16x16_neon()
369 // d0[0][7] = AVG3(above[6], above[7], above[8]); in vpx_highbd_d45_predictor_16x16_neon()
370 // d0[1][0] = AVG3(above[7], above[8], above[9]); in vpx_highbd_d45_predictor_16x16_neon()
372 // d0[1][7] = AVG3(above[14], above[15], above[16]); in vpx_highbd_d45_predictor_16x16_neon()
376 // Incrementally shift in duplicates of above[15]. in vpx_highbd_d45_predictor_16x16_neon()
413 const uint16_t *above, in vpx_highbd_d45_predictor_32x32_neon() argument
420 a0 = vld1q_u16(above + 0); in vpx_highbd_d45_predictor_32x32_neon()
421 a1 = vld1q_u16(above + 1); in vpx_highbd_d45_predictor_32x32_neon()
422 a7 = vld1q_u16(above + 7); in vpx_highbd_d45_predictor_32x32_neon()
423 a8 = vld1q_u16(above + 8); in vpx_highbd_d45_predictor_32x32_neon()
424 a9 = vld1q_u16(above + 9); in vpx_highbd_d45_predictor_32x32_neon()
425 a15 = vld1q_u16(above + 15); in vpx_highbd_d45_predictor_32x32_neon()
426 a16 = vld1q_u16(above + 16); in vpx_highbd_d45_predictor_32x32_neon()
427 a17 = vld1q_u16(above + 17); in vpx_highbd_d45_predictor_32x32_neon()
428 a23 = vld1q_u16(above + 23); in vpx_highbd_d45_predictor_32x32_neon()
429 a24 = vld1q_u16(above + 24); in vpx_highbd_d45_predictor_32x32_neon()
430 a25 = vld1q_u16(above + 25); in vpx_highbd_d45_predictor_32x32_neon()
431 a31 = vld1q_dup_u16(above + 31); in vpx_highbd_d45_predictor_32x32_neon()
433 // [ x, above[0], ... , above[6] ] in vpx_highbd_d45_predictor_32x32_neon()
457 const uint16_t *above, in vpx_highbd_d63_predictor_4x4_neon() argument
463 a0 = vld1_u16(above + 0); in vpx_highbd_d63_predictor_4x4_neon()
464 a1 = vld1_u16(above + 1); in vpx_highbd_d63_predictor_4x4_neon()
465 a2 = vld1_u16(above + 2); in vpx_highbd_d63_predictor_4x4_neon()
466 a3 = vld1_u16(above + 3); in vpx_highbd_d63_predictor_4x4_neon()
474 // elements rather than storing a duplicate of above[3], which differs in vpx_highbd_d63_predictor_4x4_neon()
484 const uint16_t *above, in vpx_highbd_d63_predictor_8x8_neon() argument
490 a0 = vld1q_u16(above + 0); in vpx_highbd_d63_predictor_8x8_neon()
491 a1 = vld1q_u16(above + 1); in vpx_highbd_d63_predictor_8x8_neon()
492 a2 = vld1q_u16(above + 2); in vpx_highbd_d63_predictor_8x8_neon()
493 a7 = vld1q_dup_u16(above + 7); in vpx_highbd_d63_predictor_8x8_neon()
509 // replaced by a copy of above[7]. These are equivalent if for i>7, in vpx_highbd_d63_predictor_8x8_neon()
510 // above[i]==above[7], however that is not always the case. in vpx_highbd_d63_predictor_8x8_neon()
513 // copy of above[7], the first vector here doesn't matter so just reuse in vpx_highbd_d63_predictor_8x8_neon()
518 // Shuffle in duplicates of above[7] and store. in vpx_highbd_d63_predictor_8x8_neon()
530 const uint16_t *above, in vpx_highbd_d63_predictor_16x16_neon() argument
537 a0 = vld1q_u16(above + 0); in vpx_highbd_d63_predictor_16x16_neon()
538 a1 = vld1q_u16(above + 1); in vpx_highbd_d63_predictor_16x16_neon()
539 a2 = vld1q_u16(above + 2); in vpx_highbd_d63_predictor_16x16_neon()
540 a8 = vld1q_u16(above + 8); in vpx_highbd_d63_predictor_16x16_neon()
541 a9 = vld1q_u16(above + 9); in vpx_highbd_d63_predictor_16x16_neon()
542 a10 = vld1q_u16(above + 10); in vpx_highbd_d63_predictor_16x16_neon()
543 a15 = vld1q_dup_u16(above + 15); in vpx_highbd_d63_predictor_16x16_neon()
551 // additional copy of above[7], the first vector here doesn't matter so just in vpx_highbd_d63_predictor_16x16_neon()
556 // Shuffle in duplicates of above[7] and store. Note that cases involving in vpx_highbd_d63_predictor_16x16_neon()
558 // element from above. in vpx_highbd_d63_predictor_16x16_neon()
594 const uint16_t *above, in vpx_highbd_d63_predictor_32x32_neon() argument
602 a0 = vld1q_u16(above + 0); in vpx_highbd_d63_predictor_32x32_neon()
603 a1 = vld1q_u16(above + 1); in vpx_highbd_d63_predictor_32x32_neon()
604 a2 = vld1q_u16(above + 2); in vpx_highbd_d63_predictor_32x32_neon()
605 a8 = vld1q_u16(above + 8); in vpx_highbd_d63_predictor_32x32_neon()
606 a9 = vld1q_u16(above + 9); in vpx_highbd_d63_predictor_32x32_neon()
607 a10 = vld1q_u16(above + 10); in vpx_highbd_d63_predictor_32x32_neon()
608 a16 = vld1q_u16(above + 16); in vpx_highbd_d63_predictor_32x32_neon()
609 a17 = vld1q_u16(above + 17); in vpx_highbd_d63_predictor_32x32_neon()
610 a18 = vld1q_u16(above + 18); in vpx_highbd_d63_predictor_32x32_neon()
611 a24 = vld1q_u16(above + 24); in vpx_highbd_d63_predictor_32x32_neon()
612 a25 = vld1q_u16(above + 25); in vpx_highbd_d63_predictor_32x32_neon()
613 a26 = vld1q_u16(above + 26); in vpx_highbd_d63_predictor_32x32_neon()
614 a31 = vld1q_dup_u16(above + 31); in vpx_highbd_d63_predictor_32x32_neon()
626 // additional copy of above[7], the first vector here doesn't matter so just in vpx_highbd_d63_predictor_32x32_neon()
631 // Shuffle in duplicates of above[7] and store. Note that cases involving in vpx_highbd_d63_predictor_32x32_neon()
633 // element from above. in vpx_highbd_d63_predictor_32x32_neon()
783 const uint16_t *above, in vpx_highbd_d117_predictor_4x4_neon() argument
788 az = vld1_u16(above - 1); in vpx_highbd_d117_predictor_4x4_neon()
789 a0 = vld1_u16(above + 0); in vpx_highbd_d117_predictor_4x4_neon()
790 // [ left[0], above[-1], above[0], above[1] ] in vpx_highbd_d117_predictor_4x4_neon()
799 // [ above[-1], left[0], left[1], left[2] ] in vpx_highbd_d117_predictor_4x4_neon()
800 azl0 = vext_u16(vld1_dup_u16(above - 1), l0, 3); in vpx_highbd_d117_predictor_4x4_neon()
816 const uint16_t *above, in vpx_highbd_d117_predictor_8x8_neon() argument
821 az = vld1q_u16(above - 1); in vpx_highbd_d117_predictor_8x8_neon()
822 a0 = vld1q_u16(above + 0); in vpx_highbd_d117_predictor_8x8_neon()
823 // [ left[0], above[-1], ..., left[5] ] in vpx_highbd_d117_predictor_8x8_neon()
832 // [ above[-1], left[0], ..., left[6] ] in vpx_highbd_d117_predictor_8x8_neon()
833 azl0 = vextq_u16(vld1q_dup_u16(above - 1), l0, 7); in vpx_highbd_d117_predictor_8x8_neon()
835 // d0[0] = AVG2(above[-1], above[0]) in vpx_highbd_d117_predictor_8x8_neon()
837 // d0[7] = AVG2(above[6], above[7]) in vpx_highbd_d117_predictor_8x8_neon()
840 // d1[0] = AVG3(left[0], above[-1], above[0]) in vpx_highbd_d117_predictor_8x8_neon()
841 // d1[1] = AVG3(above[-1], above[0], above[1]) in vpx_highbd_d117_predictor_8x8_neon()
843 // d1[7] = AVG3(above[5], above[6], above[7]) in vpx_highbd_d117_predictor_8x8_neon()
849 // col0[7] = AVG3(above[-1], left[0], left[1]) in vpx_highbd_d117_predictor_8x8_neon()
884 const uint16_t *above, in vpx_highbd_d117_predictor_16x16_neon() argument
890 az = vld1q_u16(above - 1); in vpx_highbd_d117_predictor_16x16_neon()
891 a0 = vld1q_u16(above + 0); in vpx_highbd_d117_predictor_16x16_neon()
892 a6 = vld1q_u16(above + 6); in vpx_highbd_d117_predictor_16x16_neon()
893 a7 = vld1q_u16(above + 7); in vpx_highbd_d117_predictor_16x16_neon()
894 a8 = vld1q_u16(above + 8); in vpx_highbd_d117_predictor_16x16_neon()
895 // [ left[0], above[-1], ..., left[5] ] in vpx_highbd_d117_predictor_16x16_neon()
907 // [ above[-1], left[0], ..., left[6] ] in vpx_highbd_d117_predictor_16x16_neon()
908 azl0 = vextq_u16(vld1q_dup_u16(above - 1), l0, 7); in vpx_highbd_d117_predictor_16x16_neon()
967 const uint16_t *above, in vpx_highbd_d117_predictor_32x32_neon() argument
974 az = vld1q_u16(above - 1); in vpx_highbd_d117_predictor_32x32_neon()
975 a0 = vld1q_u16(above + 0); in vpx_highbd_d117_predictor_32x32_neon()
976 a6 = vld1q_u16(above + 6); in vpx_highbd_d117_predictor_32x32_neon()
977 a7 = vld1q_u16(above + 7); in vpx_highbd_d117_predictor_32x32_neon()
978 a8 = vld1q_u16(above + 8); in vpx_highbd_d117_predictor_32x32_neon()
979 a14 = vld1q_u16(above + 14); in vpx_highbd_d117_predictor_32x32_neon()
980 a15 = vld1q_u16(above + 15); in vpx_highbd_d117_predictor_32x32_neon()
981 a16 = vld1q_u16(above + 16); in vpx_highbd_d117_predictor_32x32_neon()
982 a22 = vld1q_u16(above + 22); in vpx_highbd_d117_predictor_32x32_neon()
983 a23 = vld1q_u16(above + 23); in vpx_highbd_d117_predictor_32x32_neon()
984 a24 = vld1q_u16(above + 24); in vpx_highbd_d117_predictor_32x32_neon()
985 // [ left[0], above[-1], ..., left[5] ] in vpx_highbd_d117_predictor_32x32_neon()
1004 // [ above[-1], left[0], ..., left[6] ] in vpx_highbd_d117_predictor_32x32_neon()
1005 azl0 = vextq_u16(vld1q_dup_u16(above - 1), l0, 7); in vpx_highbd_d117_predictor_32x32_neon()
1182 const uint16_t *above, in vpx_highbd_d153_predictor_4x4_neon() argument
1188 az = vld1_u16(above - 1); in vpx_highbd_d153_predictor_4x4_neon()
1189 a0 = vld1_u16(above + 0); in vpx_highbd_d153_predictor_4x4_neon()
1190 // [ left[0], above[-1], above[0], above[1] ] in vpx_highbd_d153_predictor_4x4_neon()
1199 // [ above[-1], left[0], left[1], left[2] ] in vpx_highbd_d153_predictor_4x4_neon()
1200 azl0 = vext_u16(vld1_dup_u16(above - 1), l0, 3); in vpx_highbd_d153_predictor_4x4_neon()
1221 const uint16_t *above, in vpx_highbd_d153_predictor_8x8_neon() argument
1227 az = vld1q_u16(above - 1); in vpx_highbd_d153_predictor_8x8_neon()
1228 a0 = vld1q_u16(above + 0); in vpx_highbd_d153_predictor_8x8_neon()
1229 // [ left[0], above[-1], ... , above[5] ] in vpx_highbd_d153_predictor_8x8_neon()
1238 // [ above[-1], left[0], ... , left[6] ] in vpx_highbd_d153_predictor_8x8_neon()
1239 azl0 = vextq_u16(vld1q_dup_u16(above - 1), l0, 7); in vpx_highbd_d153_predictor_8x8_neon()
1241 // d0[0] = AVG2(above[-1], left[0]) in vpx_highbd_d153_predictor_8x8_neon()
1247 // d1[0] = AVG3(left[0], above[-1], above[0]) in vpx_highbd_d153_predictor_8x8_neon()
1248 // d1[1] = AVG3(above[-1], above[0], above[1]) in vpx_highbd_d153_predictor_8x8_neon()
1250 // d1[7] = AVG3(above[5], above[6], above[7]) in vpx_highbd_d153_predictor_8x8_neon()
1253 // d2[0] = AVG3(above[-1], left[0], left[1]) in vpx_highbd_d153_predictor_8x8_neon()
1288 const uint16_t *above, in vpx_highbd_d153_predictor_16x16_neon() argument
1295 az = vld1q_u16(above - 1); in vpx_highbd_d153_predictor_16x16_neon()
1296 a0 = vld1q_u16(above + 0); in vpx_highbd_d153_predictor_16x16_neon()
1297 a6 = vld1q_u16(above + 6); in vpx_highbd_d153_predictor_16x16_neon()
1298 a7 = vld1q_u16(above + 7); in vpx_highbd_d153_predictor_16x16_neon()
1299 a8 = vld1q_u16(above + 8); in vpx_highbd_d153_predictor_16x16_neon()
1300 // [ left[0], above[-1], ... , above[13] ] in vpx_highbd_d153_predictor_16x16_neon()
1312 // [ above[-1], left[0], ... , left[14] ] in vpx_highbd_d153_predictor_16x16_neon()
1313 azl0 = vextq_u16(vld1q_dup_u16(above - 1), l0, 7); in vpx_highbd_d153_predictor_16x16_neon()
1370 const uint16_t *above, in vpx_highbd_d153_predictor_32x32_neon() argument
1377 az = vld1q_u16(above - 1); in vpx_highbd_d153_predictor_32x32_neon()
1378 a0 = vld1q_u16(above + 0); in vpx_highbd_d153_predictor_32x32_neon()
1379 a6 = vld1q_u16(above + 6); in vpx_highbd_d153_predictor_32x32_neon()
1380 a7 = vld1q_u16(above + 7); in vpx_highbd_d153_predictor_32x32_neon()
1381 a8 = vld1q_u16(above + 8); in vpx_highbd_d153_predictor_32x32_neon()
1382 a14 = vld1q_u16(above + 14); in vpx_highbd_d153_predictor_32x32_neon()
1383 a15 = vld1q_u16(above + 15); in vpx_highbd_d153_predictor_32x32_neon()
1384 a16 = vld1q_u16(above + 16); in vpx_highbd_d153_predictor_32x32_neon()
1385 a22 = vld1q_u16(above + 22); in vpx_highbd_d153_predictor_32x32_neon()
1386 a23 = vld1q_u16(above + 23); in vpx_highbd_d153_predictor_32x32_neon()
1387 a24 = vld1q_u16(above + 24); in vpx_highbd_d153_predictor_32x32_neon()
1388 // [ left[0], above[-1], ... , above[13] ] in vpx_highbd_d153_predictor_32x32_neon()
1406 // [ above[-1], left[0], ... , left[14] ] in vpx_highbd_d153_predictor_32x32_neon()
1407 azl0 = vextq_u16(vld1q_dup_u16(above - 1), l0, 7); in vpx_highbd_d153_predictor_32x32_neon()
1582 const uint16_t *above, in vpx_highbd_d135_predictor_4x4_neon() argument
1584 const uint16x8_t XA0123___ = vld1q_u16(above - 1); in vpx_highbd_d135_predictor_4x4_neon()
1609 const uint16_t *above, in vpx_highbd_d135_predictor_8x8_neon() argument
1611 const uint16x8_t XA0123456 = vld1q_u16(above - 1); in vpx_highbd_d135_predictor_8x8_neon()
1612 const uint16x8_t A01234567 = vld1q_u16(above); in vpx_highbd_d135_predictor_8x8_neon()
1613 const uint16x8_t A1234567_ = vld1q_u16(above + 1); in vpx_highbd_d135_predictor_8x8_neon()
1659 const uint16_t *above, in vpx_highbd_d135_predictor_16x16_neon() argument
1674 const uint16x8_t XA0123456 = vld1q_u16(above - 1); in vpx_highbd_d135_predictor_16x16_neon()
1680 const uint16x8_t A01234567 = vld1q_u16(above); in vpx_highbd_d135_predictor_16x16_neon()
1681 const uint16x8_t A12345678 = vld1q_u16(above + 1); in vpx_highbd_d135_predictor_16x16_neon()
1685 const uint16x8_t A789abcde = vld1q_u16(above + 7); in vpx_highbd_d135_predictor_16x16_neon()
1686 const uint16x8_t A89abcdef = vld1q_u16(above + 8); in vpx_highbd_d135_predictor_16x16_neon()
1687 const uint16x8_t A9abcdef_ = vld1q_u16(above + 9); in vpx_highbd_d135_predictor_16x16_neon()
1735 const uint16_t *above, in vpx_highbd_d135_predictor_32x32_neon() argument
1768 const uint16x8_t XAL0123456 = vld1q_u16(above - 1); in vpx_highbd_d135_predictor_32x32_neon()
1774 const uint16x8_t AL01234567 = vld1q_u16(above); in vpx_highbd_d135_predictor_32x32_neon()
1775 const uint16x8_t AL12345678 = vld1q_u16(above + 1); in vpx_highbd_d135_predictor_32x32_neon()
1779 const uint16x8_t AL789abcde = vld1q_u16(above + 7); in vpx_highbd_d135_predictor_32x32_neon()
1780 const uint16x8_t AL89abcdef = vld1q_u16(above + 8); in vpx_highbd_d135_predictor_32x32_neon()
1781 const uint16x8_t AL9abcdefg = vld1q_u16(above + 9); in vpx_highbd_d135_predictor_32x32_neon()
1785 const uint16x8_t ALfR0123456 = vld1q_u16(above + 15); in vpx_highbd_d135_predictor_32x32_neon()
1786 const uint16x8_t AR01234567 = vld1q_u16(above + 16); in vpx_highbd_d135_predictor_32x32_neon()
1787 const uint16x8_t AR12345678 = vld1q_u16(above + 17); in vpx_highbd_d135_predictor_32x32_neon()
1791 const uint16x8_t AR789abcde = vld1q_u16(above + 23); in vpx_highbd_d135_predictor_32x32_neon()
1792 const uint16x8_t AR89abcdef = vld1q_u16(above + 24); in vpx_highbd_d135_predictor_32x32_neon()
1793 const uint16x8_t AR9abcdef_ = vld1q_u16(above + 25); in vpx_highbd_d135_predictor_32x32_neon()
1825 const uint16_t *above, in vpx_highbd_d207_predictor_4x4_neon() argument
1828 (void)above; in vpx_highbd_d207_predictor_4x4_neon()
1856 const uint16_t *above, in vpx_highbd_d207_predictor_8x8_neon() argument
1859 (void)above; in vpx_highbd_d207_predictor_8x8_neon()
1887 const uint16_t *above, in vpx_highbd_d207_predictor_16x16_neon() argument
1890 (void)above; in vpx_highbd_d207_predictor_16x16_neon()
1950 const uint16_t *above, in vpx_highbd_d207_predictor_32x32_neon() argument
1954 (void)above; in vpx_highbd_d207_predictor_32x32_neon()
2130 const uint16_t *above, in vpx_highbd_v_predictor_4x4_neon() argument
2132 const uint16x4_t row = vld1_u16(above); in vpx_highbd_v_predictor_4x4_neon()
2143 const uint16_t *above, in vpx_highbd_v_predictor_8x8_neon() argument
2145 const uint16x8_t row = vld1q_u16(above); in vpx_highbd_v_predictor_8x8_neon()
2156 const uint16_t *above, in vpx_highbd_v_predictor_16x16_neon() argument
2158 const uint16x8_t row0 = vld1q_u16(above + 0); in vpx_highbd_v_predictor_16x16_neon()
2159 const uint16x8_t row1 = vld1q_u16(above + 8); in vpx_highbd_v_predictor_16x16_neon()
2172 const uint16_t *above, in vpx_highbd_v_predictor_32x32_neon() argument
2174 const uint16x8_t row0 = vld1q_u16(above + 0); in vpx_highbd_v_predictor_32x32_neon()
2175 const uint16x8_t row1 = vld1q_u16(above + 8); in vpx_highbd_v_predictor_32x32_neon()
2176 const uint16x8_t row2 = vld1q_u16(above + 16); in vpx_highbd_v_predictor_32x32_neon()
2177 const uint16x8_t row3 = vld1q_u16(above + 24); in vpx_highbd_v_predictor_32x32_neon()
2194 const uint16_t *above, in vpx_highbd_h_predictor_4x4_neon() argument
2198 (void)above; in vpx_highbd_h_predictor_4x4_neon()
2215 const uint16_t *above, in vpx_highbd_h_predictor_8x8_neon() argument
2221 (void)above; in vpx_highbd_h_predictor_8x8_neon()
2259 const uint16_t *above, in vpx_highbd_h_predictor_16x16_neon() argument
2262 (void)above; in vpx_highbd_h_predictor_16x16_neon()
2304 const uint16_t *above, in vpx_highbd_h_predictor_32x32_neon() argument
2307 (void)above; in vpx_highbd_h_predictor_32x32_neon()
2338 const uint16_t *above, in vpx_highbd_tm_predictor_4x4_neon() argument
2341 const int16x8_t top_left = vld1q_dup_s16((const int16_t *)(above - 1)); in vpx_highbd_tm_predictor_4x4_neon()
2342 const int16x4_t above_s16d = vld1_s16((const int16_t *)above); in vpx_highbd_tm_predictor_4x4_neon()
2379 const uint16_t *above, in vpx_highbd_tm_predictor_8x8_neon() argument
2382 const int16x8_t top_left = vld1q_dup_s16((const int16_t *)(above - 1)); in vpx_highbd_tm_predictor_8x8_neon()
2383 const int16x8_t above_s16 = vld1q_s16((const int16_t *)above); in vpx_highbd_tm_predictor_8x8_neon()
2424 const uint16_t *above, in vpx_highbd_tm_predictor_16x16_neon() argument
2427 const int16x8_t top_left = vld1q_dup_s16((const int16_t *)(above - 1)); in vpx_highbd_tm_predictor_16x16_neon()
2428 const int16x8_t above0 = vld1q_s16((const int16_t *)above); in vpx_highbd_tm_predictor_16x16_neon()
2429 const int16x8_t above1 = vld1q_s16((const int16_t *)(above + 8)); in vpx_highbd_tm_predictor_16x16_neon()
2482 const uint16_t *above, in vpx_highbd_tm_predictor_32x32_neon() argument
2485 const int16x8_t top_left = vld1q_dup_s16((const int16_t *)(above - 1)); in vpx_highbd_tm_predictor_32x32_neon()
2486 const int16x8_t above0 = vld1q_s16((const int16_t *)above); in vpx_highbd_tm_predictor_32x32_neon()
2487 const int16x8_t above1 = vld1q_s16((const int16_t *)(above + 8)); in vpx_highbd_tm_predictor_32x32_neon()
2488 const int16x8_t above2 = vld1q_s16((const int16_t *)(above + 16)); in vpx_highbd_tm_predictor_32x32_neon()
2489 const int16x8_t above3 = vld1q_s16((const int16_t *)(above + 24)); in vpx_highbd_tm_predictor_32x32_neon()