Lines Matching refs:yy
143 static inline Int qadd32S ( Int xx, Int yy ) in qadd32S() argument
145 Long t = ((Long)xx) + ((Long)yy); in qadd32S()
153 static inline Short qadd16S ( Short xx, Short yy ) in qadd16S() argument
155 Int t = ((Int)xx) + ((Int)yy); in qadd16S()
161 static inline Char qadd8S ( Char xx, Char yy ) in qadd8S() argument
163 Int t = ((Int)xx) + ((Int)yy); in qadd8S()
169 static inline UShort qadd16U ( UShort xx, UShort yy ) in qadd16U() argument
171 UInt t = ((UInt)xx) + ((UInt)yy); in qadd16U()
176 static inline UChar qadd8U ( UChar xx, UChar yy ) in qadd8U() argument
178 UInt t = ((UInt)xx) + ((UInt)yy); in qadd8U()
183 static inline Int qsub32S ( Int xx, Int yy ) in qsub32S() argument
185 Long t = ((Long)xx) - ((Long)yy); in qsub32S()
193 static inline Short qsub16S ( Short xx, Short yy ) in qsub16S() argument
195 Int t = ((Int)xx) - ((Int)yy); in qsub16S()
201 static inline Char qsub8S ( Char xx, Char yy ) in qsub8S() argument
203 Int t = ((Int)xx) - ((Int)yy); in qsub8S()
209 static inline UShort qsub16U ( UShort xx, UShort yy ) in qsub16U() argument
211 Int t = ((Int)xx) - ((Int)yy); in qsub16U()
217 static inline UChar qsub8U ( UChar xx, UChar yy ) in qsub8U() argument
219 Int t = ((Int)xx) - ((Int)yy); in qsub8U()
225 static inline Short mul16 ( Short xx, Short yy ) in mul16() argument
227 Int t = ((Int)xx) * ((Int)yy); in mul16()
231 static inline Int mul32 ( Int xx, Int yy ) in mul32() argument
233 Int t = ((Int)xx) * ((Int)yy); in mul32()
237 static inline Short mulhi16S ( Short xx, Short yy ) in mulhi16S() argument
239 Int t = ((Int)xx) * ((Int)yy); in mulhi16S()
244 static inline UShort mulhi16U ( UShort xx, UShort yy ) in mulhi16U() argument
246 UInt t = ((UInt)xx) * ((UInt)yy); in mulhi16U()
251 static inline UInt cmpeq32 ( UInt xx, UInt yy ) in cmpeq32() argument
253 return xx==yy ? 0xFFFFFFFF : 0; in cmpeq32()
256 static inline UShort cmpeq16 ( UShort xx, UShort yy ) in cmpeq16() argument
258 return toUShort(xx==yy ? 0xFFFF : 0); in cmpeq16()
261 static inline UChar cmpeq8 ( UChar xx, UChar yy ) in cmpeq8() argument
263 return toUChar(xx==yy ? 0xFF : 0); in cmpeq8()
266 static inline UInt cmpgt32S ( Int xx, Int yy ) in cmpgt32S() argument
268 return xx>yy ? 0xFFFFFFFF : 0; in cmpgt32S()
271 static inline UShort cmpgt16S ( Short xx, Short yy ) in cmpgt16S() argument
273 return toUShort(xx>yy ? 0xFFFF : 0); in cmpgt16S()
276 static inline UChar cmpgt8S ( Char xx, Char yy ) in cmpgt8S() argument
278 return toUChar(xx>yy ? 0xFF : 0); in cmpgt8S()
373 static inline UChar avg8U ( UChar xx, UChar yy ) in avg8U() argument
376 UInt yyi = (UInt)yy; in avg8U()
381 static inline UShort avg16U ( UShort xx, UShort yy ) in avg16U() argument
384 UInt yyi = (UInt)yy; in avg16U()
389 static inline Short max16S ( Short xx, Short yy ) in max16S() argument
391 return toUShort((xx > yy) ? xx : yy); in max16S()
394 static inline UChar max8U ( UChar xx, UChar yy ) in max8U() argument
396 return toUChar((xx > yy) ? xx : yy); in max8U()
399 static inline Short min16S ( Short xx, Short yy ) in min16S() argument
401 return toUShort((xx < yy) ? xx : yy); in min16S()
404 static inline UChar min8U ( UChar xx, UChar yy ) in min8U() argument
406 return toUChar((xx < yy) ? xx : yy); in min8U()
409 static inline UShort hadd16U ( UShort xx, UShort yy ) in hadd16U() argument
412 UInt yyi = (UInt)yy; in hadd16U()
417 static inline Short hadd16S ( Short xx, Short yy ) in hadd16S() argument
420 Int yyi = (Int)yy; in hadd16S()
425 static inline UShort hsub16U ( UShort xx, UShort yy ) in hsub16U() argument
428 UInt yyi = (UInt)yy; in hsub16U()
433 static inline Short hsub16S ( Short xx, Short yy ) in hsub16S() argument
436 Int yyi = (Int)yy; in hsub16S()
441 static inline UChar hadd8U ( UChar xx, UChar yy ) in hadd8U() argument
444 UInt yyi = (UInt)yy; in hadd8U()
449 static inline Char hadd8S ( Char xx, Char yy ) in hadd8S() argument
452 Int yyi = (Int)yy; in hadd8S()
457 static inline UChar hsub8U ( UChar xx, UChar yy ) in hsub8U() argument
460 UInt yyi = (UInt)yy; in hsub8U()
465 static inline Char hsub8S ( Char xx, Char yy ) in hsub8S() argument
468 Int yyi = (Int)yy; in hsub8S()
473 static inline UInt absdiff8U ( UChar xx, UChar yy ) in absdiff8U() argument
476 UInt yyu = (UChar)yy; in absdiff8U()
487 ULong h_generic_calc_Add32x2 ( ULong xx, ULong yy ) in h_generic_calc_Add32x2() argument
490 sel32x2_1(xx) + sel32x2_1(yy), in h_generic_calc_Add32x2()
491 sel32x2_0(xx) + sel32x2_0(yy) in h_generic_calc_Add32x2()
495 ULong h_generic_calc_Add16x4 ( ULong xx, ULong yy ) in h_generic_calc_Add16x4() argument
498 toUShort( sel16x4_3(xx) + sel16x4_3(yy) ), in h_generic_calc_Add16x4()
499 toUShort( sel16x4_2(xx) + sel16x4_2(yy) ), in h_generic_calc_Add16x4()
500 toUShort( sel16x4_1(xx) + sel16x4_1(yy) ), in h_generic_calc_Add16x4()
501 toUShort( sel16x4_0(xx) + sel16x4_0(yy) ) in h_generic_calc_Add16x4()
505 ULong h_generic_calc_Add8x8 ( ULong xx, ULong yy ) in h_generic_calc_Add8x8() argument
508 toUChar( sel8x8_7(xx) + sel8x8_7(yy) ), in h_generic_calc_Add8x8()
509 toUChar( sel8x8_6(xx) + sel8x8_6(yy) ), in h_generic_calc_Add8x8()
510 toUChar( sel8x8_5(xx) + sel8x8_5(yy) ), in h_generic_calc_Add8x8()
511 toUChar( sel8x8_4(xx) + sel8x8_4(yy) ), in h_generic_calc_Add8x8()
512 toUChar( sel8x8_3(xx) + sel8x8_3(yy) ), in h_generic_calc_Add8x8()
513 toUChar( sel8x8_2(xx) + sel8x8_2(yy) ), in h_generic_calc_Add8x8()
514 toUChar( sel8x8_1(xx) + sel8x8_1(yy) ), in h_generic_calc_Add8x8()
515 toUChar( sel8x8_0(xx) + sel8x8_0(yy) ) in h_generic_calc_Add8x8()
521 ULong h_generic_calc_QAdd16Sx4 ( ULong xx, ULong yy ) in h_generic_calc_QAdd16Sx4() argument
524 qadd16S( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_QAdd16Sx4()
525 qadd16S( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_QAdd16Sx4()
526 qadd16S( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_QAdd16Sx4()
527 qadd16S( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_QAdd16Sx4()
531 ULong h_generic_calc_QAdd8Sx8 ( ULong xx, ULong yy ) in h_generic_calc_QAdd8Sx8() argument
534 qadd8S( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_QAdd8Sx8()
535 qadd8S( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_QAdd8Sx8()
536 qadd8S( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_QAdd8Sx8()
537 qadd8S( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_QAdd8Sx8()
538 qadd8S( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_QAdd8Sx8()
539 qadd8S( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_QAdd8Sx8()
540 qadd8S( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_QAdd8Sx8()
541 qadd8S( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_QAdd8Sx8()
545 ULong h_generic_calc_QAdd16Ux4 ( ULong xx, ULong yy ) in h_generic_calc_QAdd16Ux4() argument
548 qadd16U( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_QAdd16Ux4()
549 qadd16U( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_QAdd16Ux4()
550 qadd16U( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_QAdd16Ux4()
551 qadd16U( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_QAdd16Ux4()
555 ULong h_generic_calc_QAdd8Ux8 ( ULong xx, ULong yy ) in h_generic_calc_QAdd8Ux8() argument
558 qadd8U( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_QAdd8Ux8()
559 qadd8U( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_QAdd8Ux8()
560 qadd8U( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_QAdd8Ux8()
561 qadd8U( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_QAdd8Ux8()
562 qadd8U( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_QAdd8Ux8()
563 qadd8U( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_QAdd8Ux8()
564 qadd8U( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_QAdd8Ux8()
565 qadd8U( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_QAdd8Ux8()
571 ULong h_generic_calc_Sub32x2 ( ULong xx, ULong yy ) in h_generic_calc_Sub32x2() argument
574 sel32x2_1(xx) - sel32x2_1(yy), in h_generic_calc_Sub32x2()
575 sel32x2_0(xx) - sel32x2_0(yy) in h_generic_calc_Sub32x2()
579 ULong h_generic_calc_Sub16x4 ( ULong xx, ULong yy ) in h_generic_calc_Sub16x4() argument
582 toUShort( sel16x4_3(xx) - sel16x4_3(yy) ), in h_generic_calc_Sub16x4()
583 toUShort( sel16x4_2(xx) - sel16x4_2(yy) ), in h_generic_calc_Sub16x4()
584 toUShort( sel16x4_1(xx) - sel16x4_1(yy) ), in h_generic_calc_Sub16x4()
585 toUShort( sel16x4_0(xx) - sel16x4_0(yy) ) in h_generic_calc_Sub16x4()
589 ULong h_generic_calc_Sub8x8 ( ULong xx, ULong yy ) in h_generic_calc_Sub8x8() argument
592 toUChar( sel8x8_7(xx) - sel8x8_7(yy) ), in h_generic_calc_Sub8x8()
593 toUChar( sel8x8_6(xx) - sel8x8_6(yy) ), in h_generic_calc_Sub8x8()
594 toUChar( sel8x8_5(xx) - sel8x8_5(yy) ), in h_generic_calc_Sub8x8()
595 toUChar( sel8x8_4(xx) - sel8x8_4(yy) ), in h_generic_calc_Sub8x8()
596 toUChar( sel8x8_3(xx) - sel8x8_3(yy) ), in h_generic_calc_Sub8x8()
597 toUChar( sel8x8_2(xx) - sel8x8_2(yy) ), in h_generic_calc_Sub8x8()
598 toUChar( sel8x8_1(xx) - sel8x8_1(yy) ), in h_generic_calc_Sub8x8()
599 toUChar( sel8x8_0(xx) - sel8x8_0(yy) ) in h_generic_calc_Sub8x8()
605 ULong h_generic_calc_QSub16Sx4 ( ULong xx, ULong yy ) in h_generic_calc_QSub16Sx4() argument
608 qsub16S( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_QSub16Sx4()
609 qsub16S( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_QSub16Sx4()
610 qsub16S( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_QSub16Sx4()
611 qsub16S( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_QSub16Sx4()
615 ULong h_generic_calc_QSub8Sx8 ( ULong xx, ULong yy ) in h_generic_calc_QSub8Sx8() argument
618 qsub8S( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_QSub8Sx8()
619 qsub8S( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_QSub8Sx8()
620 qsub8S( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_QSub8Sx8()
621 qsub8S( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_QSub8Sx8()
622 qsub8S( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_QSub8Sx8()
623 qsub8S( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_QSub8Sx8()
624 qsub8S( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_QSub8Sx8()
625 qsub8S( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_QSub8Sx8()
629 ULong h_generic_calc_QSub16Ux4 ( ULong xx, ULong yy ) in h_generic_calc_QSub16Ux4() argument
632 qsub16U( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_QSub16Ux4()
633 qsub16U( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_QSub16Ux4()
634 qsub16U( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_QSub16Ux4()
635 qsub16U( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_QSub16Ux4()
639 ULong h_generic_calc_QSub8Ux8 ( ULong xx, ULong yy ) in h_generic_calc_QSub8Ux8() argument
642 qsub8U( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_QSub8Ux8()
643 qsub8U( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_QSub8Ux8()
644 qsub8U( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_QSub8Ux8()
645 qsub8U( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_QSub8Ux8()
646 qsub8U( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_QSub8Ux8()
647 qsub8U( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_QSub8Ux8()
648 qsub8U( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_QSub8Ux8()
649 qsub8U( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_QSub8Ux8()
655 ULong h_generic_calc_Mul16x4 ( ULong xx, ULong yy ) in h_generic_calc_Mul16x4() argument
658 mul16( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_Mul16x4()
659 mul16( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_Mul16x4()
660 mul16( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_Mul16x4()
661 mul16( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_Mul16x4()
665 ULong h_generic_calc_Mul32x2 ( ULong xx, ULong yy ) in h_generic_calc_Mul32x2() argument
668 mul32( sel32x2_1(xx), sel32x2_1(yy) ), in h_generic_calc_Mul32x2()
669 mul32( sel32x2_0(xx), sel32x2_0(yy) ) in h_generic_calc_Mul32x2()
673 ULong h_generic_calc_MulHi16Sx4 ( ULong xx, ULong yy ) in h_generic_calc_MulHi16Sx4() argument
676 mulhi16S( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_MulHi16Sx4()
677 mulhi16S( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_MulHi16Sx4()
678 mulhi16S( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_MulHi16Sx4()
679 mulhi16S( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_MulHi16Sx4()
683 ULong h_generic_calc_MulHi16Ux4 ( ULong xx, ULong yy ) in h_generic_calc_MulHi16Ux4() argument
686 mulhi16U( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_MulHi16Ux4()
687 mulhi16U( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_MulHi16Ux4()
688 mulhi16U( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_MulHi16Ux4()
689 mulhi16U( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_MulHi16Ux4()
695 ULong h_generic_calc_CmpEQ32x2 ( ULong xx, ULong yy ) in h_generic_calc_CmpEQ32x2() argument
698 cmpeq32( sel32x2_1(xx), sel32x2_1(yy) ), in h_generic_calc_CmpEQ32x2()
699 cmpeq32( sel32x2_0(xx), sel32x2_0(yy) ) in h_generic_calc_CmpEQ32x2()
703 ULong h_generic_calc_CmpEQ16x4 ( ULong xx, ULong yy ) in h_generic_calc_CmpEQ16x4() argument
706 cmpeq16( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_CmpEQ16x4()
707 cmpeq16( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_CmpEQ16x4()
708 cmpeq16( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_CmpEQ16x4()
709 cmpeq16( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_CmpEQ16x4()
713 ULong h_generic_calc_CmpEQ8x8 ( ULong xx, ULong yy ) in h_generic_calc_CmpEQ8x8() argument
716 cmpeq8( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_CmpEQ8x8()
717 cmpeq8( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_CmpEQ8x8()
718 cmpeq8( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_CmpEQ8x8()
719 cmpeq8( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_CmpEQ8x8()
720 cmpeq8( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_CmpEQ8x8()
721 cmpeq8( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_CmpEQ8x8()
722 cmpeq8( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_CmpEQ8x8()
723 cmpeq8( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_CmpEQ8x8()
727 ULong h_generic_calc_CmpGT32Sx2 ( ULong xx, ULong yy ) in h_generic_calc_CmpGT32Sx2() argument
730 cmpgt32S( sel32x2_1(xx), sel32x2_1(yy) ), in h_generic_calc_CmpGT32Sx2()
731 cmpgt32S( sel32x2_0(xx), sel32x2_0(yy) ) in h_generic_calc_CmpGT32Sx2()
735 ULong h_generic_calc_CmpGT16Sx4 ( ULong xx, ULong yy ) in h_generic_calc_CmpGT16Sx4() argument
738 cmpgt16S( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_CmpGT16Sx4()
739 cmpgt16S( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_CmpGT16Sx4()
740 cmpgt16S( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_CmpGT16Sx4()
741 cmpgt16S( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_CmpGT16Sx4()
745 ULong h_generic_calc_CmpGT8Sx8 ( ULong xx, ULong yy ) in h_generic_calc_CmpGT8Sx8() argument
748 cmpgt8S( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_CmpGT8Sx8()
749 cmpgt8S( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_CmpGT8Sx8()
750 cmpgt8S( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_CmpGT8Sx8()
751 cmpgt8S( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_CmpGT8Sx8()
752 cmpgt8S( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_CmpGT8Sx8()
753 cmpgt8S( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_CmpGT8Sx8()
754 cmpgt8S( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_CmpGT8Sx8()
755 cmpgt8S( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_CmpGT8Sx8()
1099 ULong h_generic_calc_Avg8Ux8 ( ULong xx, ULong yy ) in h_generic_calc_Avg8Ux8() argument
1102 avg8U( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_Avg8Ux8()
1103 avg8U( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_Avg8Ux8()
1104 avg8U( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_Avg8Ux8()
1105 avg8U( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_Avg8Ux8()
1106 avg8U( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_Avg8Ux8()
1107 avg8U( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_Avg8Ux8()
1108 avg8U( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_Avg8Ux8()
1109 avg8U( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_Avg8Ux8()
1113 ULong h_generic_calc_Avg16Ux4 ( ULong xx, ULong yy ) in h_generic_calc_Avg16Ux4() argument
1116 avg16U( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_Avg16Ux4()
1117 avg16U( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_Avg16Ux4()
1118 avg16U( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_Avg16Ux4()
1119 avg16U( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_Avg16Ux4()
1125 ULong h_generic_calc_Max16Sx4 ( ULong xx, ULong yy ) in h_generic_calc_Max16Sx4() argument
1128 max16S( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_Max16Sx4()
1129 max16S( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_Max16Sx4()
1130 max16S( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_Max16Sx4()
1131 max16S( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_Max16Sx4()
1135 ULong h_generic_calc_Max8Ux8 ( ULong xx, ULong yy ) in h_generic_calc_Max8Ux8() argument
1138 max8U( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_Max8Ux8()
1139 max8U( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_Max8Ux8()
1140 max8U( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_Max8Ux8()
1141 max8U( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_Max8Ux8()
1142 max8U( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_Max8Ux8()
1143 max8U( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_Max8Ux8()
1144 max8U( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_Max8Ux8()
1145 max8U( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_Max8Ux8()
1149 ULong h_generic_calc_Min16Sx4 ( ULong xx, ULong yy ) in h_generic_calc_Min16Sx4() argument
1152 min16S( sel16x4_3(xx), sel16x4_3(yy) ), in h_generic_calc_Min16Sx4()
1153 min16S( sel16x4_2(xx), sel16x4_2(yy) ), in h_generic_calc_Min16Sx4()
1154 min16S( sel16x4_1(xx), sel16x4_1(yy) ), in h_generic_calc_Min16Sx4()
1155 min16S( sel16x4_0(xx), sel16x4_0(yy) ) in h_generic_calc_Min16Sx4()
1159 ULong h_generic_calc_Min8Ux8 ( ULong xx, ULong yy ) in h_generic_calc_Min8Ux8() argument
1162 min8U( sel8x8_7(xx), sel8x8_7(yy) ), in h_generic_calc_Min8Ux8()
1163 min8U( sel8x8_6(xx), sel8x8_6(yy) ), in h_generic_calc_Min8Ux8()
1164 min8U( sel8x8_5(xx), sel8x8_5(yy) ), in h_generic_calc_Min8Ux8()
1165 min8U( sel8x8_4(xx), sel8x8_4(yy) ), in h_generic_calc_Min8Ux8()
1166 min8U( sel8x8_3(xx), sel8x8_3(yy) ), in h_generic_calc_Min8Ux8()
1167 min8U( sel8x8_2(xx), sel8x8_2(yy) ), in h_generic_calc_Min8Ux8()
1168 min8U( sel8x8_1(xx), sel8x8_1(yy) ), in h_generic_calc_Min8Ux8()
1169 min8U( sel8x8_0(xx), sel8x8_0(yy) ) in h_generic_calc_Min8Ux8()
1229 UInt h_generic_calc_Add16x2 ( UInt xx, UInt yy ) in h_generic_calc_Add16x2() argument
1231 return mk16x2( sel16x2_1(xx) + sel16x2_1(yy), in h_generic_calc_Add16x2()
1232 sel16x2_0(xx) + sel16x2_0(yy) ); in h_generic_calc_Add16x2()
1235 UInt h_generic_calc_Sub16x2 ( UInt xx, UInt yy ) in h_generic_calc_Sub16x2() argument
1237 return mk16x2( sel16x2_1(xx) - sel16x2_1(yy), in h_generic_calc_Sub16x2()
1238 sel16x2_0(xx) - sel16x2_0(yy) ); in h_generic_calc_Sub16x2()
1241 UInt h_generic_calc_HAdd16Ux2 ( UInt xx, UInt yy ) in h_generic_calc_HAdd16Ux2() argument
1243 return mk16x2( hadd16U( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_HAdd16Ux2()
1244 hadd16U( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_HAdd16Ux2()
1247 UInt h_generic_calc_HAdd16Sx2 ( UInt xx, UInt yy ) in h_generic_calc_HAdd16Sx2() argument
1249 return mk16x2( hadd16S( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_HAdd16Sx2()
1250 hadd16S( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_HAdd16Sx2()
1253 UInt h_generic_calc_HSub16Ux2 ( UInt xx, UInt yy ) in h_generic_calc_HSub16Ux2() argument
1255 return mk16x2( hsub16U( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_HSub16Ux2()
1256 hsub16U( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_HSub16Ux2()
1259 UInt h_generic_calc_HSub16Sx2 ( UInt xx, UInt yy ) in h_generic_calc_HSub16Sx2() argument
1261 return mk16x2( hsub16S( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_HSub16Sx2()
1262 hsub16S( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_HSub16Sx2()
1265 UInt h_generic_calc_QAdd16Ux2 ( UInt xx, UInt yy ) in h_generic_calc_QAdd16Ux2() argument
1267 return mk16x2( qadd16U( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_QAdd16Ux2()
1268 qadd16U( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_QAdd16Ux2()
1271 UInt h_generic_calc_QAdd16Sx2 ( UInt xx, UInt yy ) in h_generic_calc_QAdd16Sx2() argument
1273 return mk16x2( qadd16S( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_QAdd16Sx2()
1274 qadd16S( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_QAdd16Sx2()
1277 UInt h_generic_calc_QSub16Ux2 ( UInt xx, UInt yy ) in h_generic_calc_QSub16Ux2() argument
1279 return mk16x2( qsub16U( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_QSub16Ux2()
1280 qsub16U( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_QSub16Ux2()
1283 UInt h_generic_calc_QSub16Sx2 ( UInt xx, UInt yy ) in h_generic_calc_QSub16Sx2() argument
1285 return mk16x2( qsub16S( sel16x2_1(xx), sel16x2_1(yy) ), in h_generic_calc_QSub16Sx2()
1286 qsub16S( sel16x2_0(xx), sel16x2_0(yy) ) ); in h_generic_calc_QSub16Sx2()
1291 UInt h_generic_calc_Add8x4 ( UInt xx, UInt yy ) in h_generic_calc_Add8x4() argument
1294 sel8x4_3(xx) + sel8x4_3(yy), in h_generic_calc_Add8x4()
1295 sel8x4_2(xx) + sel8x4_2(yy), in h_generic_calc_Add8x4()
1296 sel8x4_1(xx) + sel8x4_1(yy), in h_generic_calc_Add8x4()
1297 sel8x4_0(xx) + sel8x4_0(yy) in h_generic_calc_Add8x4()
1301 UInt h_generic_calc_Sub8x4 ( UInt xx, UInt yy ) in h_generic_calc_Sub8x4() argument
1304 sel8x4_3(xx) - sel8x4_3(yy), in h_generic_calc_Sub8x4()
1305 sel8x4_2(xx) - sel8x4_2(yy), in h_generic_calc_Sub8x4()
1306 sel8x4_1(xx) - sel8x4_1(yy), in h_generic_calc_Sub8x4()
1307 sel8x4_0(xx) - sel8x4_0(yy) in h_generic_calc_Sub8x4()
1311 UInt h_generic_calc_HAdd8Ux4 ( UInt xx, UInt yy ) in h_generic_calc_HAdd8Ux4() argument
1314 hadd8U( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_HAdd8Ux4()
1315 hadd8U( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_HAdd8Ux4()
1316 hadd8U( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_HAdd8Ux4()
1317 hadd8U( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_HAdd8Ux4()
1321 UInt h_generic_calc_HAdd8Sx4 ( UInt xx, UInt yy ) in h_generic_calc_HAdd8Sx4() argument
1324 hadd8S( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_HAdd8Sx4()
1325 hadd8S( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_HAdd8Sx4()
1326 hadd8S( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_HAdd8Sx4()
1327 hadd8S( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_HAdd8Sx4()
1331 UInt h_generic_calc_HSub8Ux4 ( UInt xx, UInt yy ) in h_generic_calc_HSub8Ux4() argument
1334 hsub8U( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_HSub8Ux4()
1335 hsub8U( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_HSub8Ux4()
1336 hsub8U( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_HSub8Ux4()
1337 hsub8U( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_HSub8Ux4()
1341 UInt h_generic_calc_HSub8Sx4 ( UInt xx, UInt yy ) in h_generic_calc_HSub8Sx4() argument
1344 hsub8S( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_HSub8Sx4()
1345 hsub8S( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_HSub8Sx4()
1346 hsub8S( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_HSub8Sx4()
1347 hsub8S( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_HSub8Sx4()
1351 UInt h_generic_calc_QAdd8Ux4 ( UInt xx, UInt yy ) in h_generic_calc_QAdd8Ux4() argument
1354 qadd8U( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_QAdd8Ux4()
1355 qadd8U( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_QAdd8Ux4()
1356 qadd8U( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_QAdd8Ux4()
1357 qadd8U( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_QAdd8Ux4()
1361 UInt h_generic_calc_QAdd8Sx4 ( UInt xx, UInt yy ) in h_generic_calc_QAdd8Sx4() argument
1364 qadd8S( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_QAdd8Sx4()
1365 qadd8S( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_QAdd8Sx4()
1366 qadd8S( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_QAdd8Sx4()
1367 qadd8S( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_QAdd8Sx4()
1371 UInt h_generic_calc_QSub8Ux4 ( UInt xx, UInt yy ) in h_generic_calc_QSub8Ux4() argument
1374 qsub8U( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_QSub8Ux4()
1375 qsub8U( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_QSub8Ux4()
1376 qsub8U( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_QSub8Ux4()
1377 qsub8U( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_QSub8Ux4()
1381 UInt h_generic_calc_QSub8Sx4 ( UInt xx, UInt yy ) in h_generic_calc_QSub8Sx4() argument
1384 qsub8S( sel8x4_3(xx), sel8x4_3(yy) ), in h_generic_calc_QSub8Sx4()
1385 qsub8S( sel8x4_2(xx), sel8x4_2(yy) ), in h_generic_calc_QSub8Sx4()
1386 qsub8S( sel8x4_1(xx), sel8x4_1(yy) ), in h_generic_calc_QSub8Sx4()
1387 qsub8S( sel8x4_0(xx), sel8x4_0(yy) ) in h_generic_calc_QSub8Sx4()
1409 UInt h_generic_calc_Sad8Ux4 ( UInt xx, UInt yy ) in h_generic_calc_Sad8Ux4() argument
1411 return absdiff8U( sel8x4_3(xx), sel8x4_3(yy) ) in h_generic_calc_Sad8Ux4()
1412 + absdiff8U( sel8x4_2(xx), sel8x4_2(yy) ) in h_generic_calc_Sad8Ux4()
1413 + absdiff8U( sel8x4_1(xx), sel8x4_1(yy) ) in h_generic_calc_Sad8Ux4()
1414 + absdiff8U( sel8x4_0(xx), sel8x4_0(yy) ); in h_generic_calc_Sad8Ux4()
1417 UInt h_generic_calc_QAdd32S ( UInt xx, UInt yy ) in h_generic_calc_QAdd32S() argument
1419 return qadd32S( xx, yy ); in h_generic_calc_QAdd32S()
1422 UInt h_generic_calc_QSub32S ( UInt xx, UInt yy ) in h_generic_calc_QSub32S() argument
1424 return qsub32S( xx, yy ); in h_generic_calc_QSub32S()