Home | History | Annotate | Download | only in priv

Lines Matching defs:w32

1159 static inline UShort sel16x2_1 ( UInt w32 ) {
1160 return 0xFFFF & (UShort)(w32 >> 16);
1162 static inline UShort sel16x2_0 ( UInt w32 ) {
1163 return 0xFFFF & (UShort)(w32);
1168 UInt w32 = (((UInt)w3) << 24) | (((UInt)w2) << 16)
1170 return w32;
1173 static inline UChar sel8x4_3 ( UInt w32 ) {
1174 return toUChar(0xFF & (w32 >> 24));
1176 static inline UChar sel8x4_2 ( UInt w32 ) {
1177 return toUChar(0xFF & (w32 >> 16));
1179 static inline UChar sel8x4_1 ( UInt w32 ) {
1180 return toUChar(0xFF & (w32 >> 8));
1182 static inline UChar sel8x4_0 ( UInt w32 ) {
1183 return toUChar(0xFF & (w32 >> 0));