Home | History | Annotate | Download | only in priv

Lines Matching defs:w32

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);
1188 UInt w32 = (((UInt)w3) << 24) | (((UInt)w2) << 16)
1190 return w32;
1193 static inline UChar sel8x4_3 ( UInt w32 ) {
1194 return toUChar(0xFF & (w32 >> 24));
1196 static inline UChar sel8x4_2 ( UInt w32 ) {
1197 return toUChar(0xFF & (w32 >> 16));
1199 static inline UChar sel8x4_1 ( UInt w32 ) {
1200 return toUChar(0xFF & (w32 >> 8));
1202 static inline UChar sel8x4_0 ( UInt w32 ) {
1203 return toUChar(0xFF & (w32 >> 0));