Home | History | Annotate | Download | only in priv

Lines Matching full:ushort

63 static inline ULong mk16x4 ( UShort w3, UShort w2, 
64 UShort w1, UShort w0 ) {
70 static inline UShort sel16x4_3 ( ULong w64 ) {
74 static inline UShort sel16x4_2 ( ULong w64 ) {
78 static inline UShort sel16x4_1 ( ULong w64 ) {
82 static inline UShort sel16x4_0 ( ULong w64 ) {
168 static inline UShort qadd16U ( UShort xx, UShort yy )
172 return (UShort)t;
208 static inline UShort qsub16U ( UShort xx, UShort yy )
213 return (UShort)t;
243 static inline UShort mulhi16U ( UShort xx, UShort yy )
247 return (UShort)t;
255 static inline UShort cmpeq16 ( UShort xx, UShort yy )
270 static inline UShort cmpgt16S ( Short xx, Short yy )
285 static inline UShort cmpnez16 ( UShort xx )
303 static inline Char qnarrow16Sto8S ( UShort xx0 )
311 static inline UChar qnarrow16Sto8U ( UShort xx0 )
319 static inline UShort narrow32to16 ( UInt xx )
321 return (UShort)xx;
324 static inline UChar narrow16to8 ( UShort xx )
342 static inline UShort shl16 ( UShort v, UInt n )
347 static inline UShort shr16 ( UShort v, UInt n )
349 return toUShort((((UShort)v) >> n));
352 static inline UShort sar16 ( UShort v, UInt n )
380 static inline UShort avg16U ( UShort xx, UShort yy )
385 return (UShort)r;
408 static inline UShort hadd16U ( UShort xx, UShort yy )
413 return (UShort)r;
424 static inline UShort hsub16U ( UShort xx, UShort yy )
429 return (UShort)r;
808 UShort h = sel16x4_3(aa);
809 UShort g = sel16x4_2(aa);
810 UShort f = sel16x4_1(aa);
811 UShort e = sel16x4_0(aa);
812 UShort d = sel16x4_3(bb);
813 UShort c = sel16x4_2(bb);
814 UShort b = sel16x4_1(bb);
815 UShort a = sel16x4_0(bb);
830 UShort h = sel16x4_3(aa);
831 UShort g = sel16x4_2(aa);
832 UShort f = sel16x4_1(aa);
833 UShort e = sel16x4_0(aa);
834 UShort d = sel16x4_3(bb);
835 UShort c = sel16x4_2(bb);
836 UShort b = sel16x4_1(bb);
837 UShort a = sel16x4_0(bb);
868 UShort h = sel16x4_3(aa);
869 UShort g = sel16x4_2(aa);
870 UShort f = sel16x4_1(aa);
871 UShort e = sel16x4_0(aa);
872 UShort d = sel16x4_3(bb);
873 UShort c = sel16x4_2(bb);
874 UShort b = sel16x4_1(bb);
875 UShort a = sel16x4_0(bb);
1175 static inline UInt mk16x2 ( UShort w1, UShort w2 ) {
1179 static inline UShort sel16x2_1 ( UInt w32 ) {
1180 return 0xFFFF & (UShort)(w32 >> 16);
1182 static inline UShort sel16x2_0 ( UInt w32 ) {
1183 return 0xFFFF & (UShort)(w32);