Home | History | Annotate | Download | only in priv

Lines Matching refs:xx

2929 static inline UChar abdU8 ( UChar xx, UChar yy ) {
2930 return toUChar(xx>yy ? xx-yy : yy-xx);
2988 ULong amd64g_calculate_mmx_pmaddwd ( ULong xx, ULong yy )
2992 (((Int)(Short)sel16x4_3(xx)) * ((Int)(Short)sel16x4_3(yy)))
2993 + (((Int)(Short)sel16x4_2(xx)) * ((Int)(Short)sel16x4_2(yy))),
2994 (((Int)(Short)sel16x4_1(xx)) * ((Int)(Short)sel16x4_1(yy)))
2995 + (((Int)(Short)sel16x4_0(xx)) * ((Int)(Short)sel16x4_0(yy)))
3000 ULong amd64g_calculate_mmx_pmovmskb ( ULong xx )
3003 if (xx & (1ULL << (64-1))) r |= (1<<7);
3004 if (xx & (1ULL << (56-1))) r |= (1<<6);
3005 if (xx & (1ULL << (48-1))) r |= (1<<5);
3006 if (xx & (1ULL << (40-1))) r |= (1<<4);
3007 if (xx & (1ULL << (32-1))) r |= (1<<3);
3008 if (xx & (1ULL << (24-1))) r |= (1<<2);
3009 if (xx & (1ULL << (16-1))) r |= (1<<1);
3010 if (xx & (1ULL << ( 8-1))) r |= (1<<0);
3015 ULong amd64g_calculate_mmx_psadbw ( ULong xx, ULong yy )
3018 t += (UInt)abdU8( sel8x8_7(xx), sel8x8_7(yy) );
3019 t += (UInt)abdU8( sel8x8_6(xx), sel8x8_6(yy) );
3020 t += (UInt)abdU8( sel8x8_5(xx), sel8x8_5(yy) );
3021 t += (UInt)abdU8( sel8x8_4(xx), sel8x8_4(yy) );
3022 t += (UInt)abdU8( sel8x8_3(xx), sel8x8_3(yy) );
3023 t += (UInt)abdU8( sel8x8_2(xx), sel8x8_2(yy) );
3024 t += (UInt)abdU8( sel8x8_1(xx), sel8x8_1(yy) );
3025 t += (UInt)abdU8( sel8x8_0(xx), sel8x8_0(yy) );
3093 static inline ULong sad_8x4 ( ULong xx, ULong yy )
3096 t += (UInt)abdU8( sel8x8_3(xx), sel8x8_3(yy) );
3097 t += (UInt)abdU8( sel8x8_2(xx), sel8x8_2(yy) );
3098 t += (UInt)abdU8( sel8x8_1(xx), sel8x8_1(yy) );
3099 t += (UInt)abdU8( sel8x8_0(xx), sel8x8_0(yy) );