Lines Matching refs:UShort

64 static inline ULong mk16x4 ( UShort w3, UShort w2, 
65 UShort w1, UShort w0 ) {
71 static inline UShort sel16x4_3 ( ULong w64 ) {
75 static inline UShort sel16x4_2 ( ULong w64 ) {
79 static inline UShort sel16x4_1 ( ULong w64 ) {
83 static inline UShort sel16x4_0 ( ULong w64 ) {
169 static inline UShort qadd16U ( UShort xx, UShort yy )
173 return (UShort)t;
209 static inline UShort qsub16U ( UShort xx, UShort yy )
214 return (UShort)t;
244 static inline UShort mulhi16U ( UShort xx, UShort yy )
248 return (UShort)t;
256 static inline UShort cmpeq16 ( UShort xx, UShort yy )
271 static inline UShort cmpgt16S ( Short xx, Short yy )
286 static inline UShort cmpnez16 ( UShort xx )
304 static inline Char qnarrow16Sto8S ( UShort xx0 )
312 static inline UChar qnarrow16Sto8U ( UShort xx0 )
320 static inline UShort narrow32to16 ( UInt xx )
322 return (UShort)xx;
325 static inline UChar narrow16to8 ( UShort xx )
343 static inline UShort shl16 ( UShort v, UInt n )
348 static inline UShort shr16 ( UShort v, UInt n )
350 return toUShort((((UShort)v) >> n));
353 static inline UShort sar16 ( UShort v, UInt n )
381 static inline UShort avg16U ( UShort xx, UShort yy )
386 return (UShort)r;
409 static inline UShort hadd16U ( UShort xx, UShort yy )
414 return (UShort)r;
425 static inline UShort hsub16U ( UShort xx, UShort yy )
430 return (UShort)r;
809 UShort h = sel16x4_3(aa);
810 UShort g = sel16x4_2(aa);
811 UShort f = sel16x4_1(aa);
812 UShort e = sel16x4_0(aa);
813 UShort d = sel16x4_3(bb);
814 UShort c = sel16x4_2(bb);
815 UShort b = sel16x4_1(bb);
816 UShort a = sel16x4_0(bb);
831 UShort h = sel16x4_3(aa);
832 UShort g = sel16x4_2(aa);
833 UShort f = sel16x4_1(aa);
834 UShort e = sel16x4_0(aa);
835 UShort d = sel16x4_3(bb);
836 UShort c = sel16x4_2(bb);
837 UShort b = sel16x4_1(bb);
838 UShort a = sel16x4_0(bb);
869 UShort h = sel16x4_3(aa);
870 UShort g = sel16x4_2(aa);
871 UShort f = sel16x4_1(aa);
872 UShort e = sel16x4_0(aa);
873 UShort d = sel16x4_3(bb);
874 UShort c = sel16x4_2(bb);
875 UShort b = sel16x4_1(bb);
876 UShort a = sel16x4_0(bb);
1190 static inline UInt mk16x2 ( UShort w1, UShort w2 ) {
1194 static inline UShort sel16x2_1 ( UInt w32 ) {
1195 return 0xFFFF & (UShort)(w32 >> 16);
1197 static inline UShort sel16x2_0 ( UInt w32 ) {
1198 return 0xFFFF & (UShort)(w32);