Lines Matching full:w64
52 static inline UInt sel32x2_1 ( ULong w64 ) {
53 return 0xFFFFFFFF & toUInt(w64 >> 32);
55 static inline UInt sel32x2_0 ( ULong w64 ) {
56 return 0xFFFFFFFF & toUInt(w64);
70 static inline UShort sel16x4_3 ( ULong w64 ) {
71 UInt hi32 = toUInt(w64 >> 32);
74 static inline UShort sel16x4_2 ( ULong w64 ) {
75 UInt hi32 = toUInt(w64 >> 32);
78 static inline UShort sel16x4_1 ( ULong w64 ) {
79 UInt lo32 = (UInt)w64;
82 static inline UShort sel16x4_0 ( ULong w64 ) {
83 UInt lo32 = (UInt)w64;
101 static inline UChar sel8x8_7 ( ULong w64 ) {
102 UInt hi32 = toUInt(w64 >> 32);
105 static inline UChar sel8x8_6 ( ULong w64 ) {
106 UInt hi32 = toUInt(w64 >> 32);
109 static inline UChar sel8x8_5 ( ULong w64 ) {
110 UInt hi32 = toUInt(w64 >> 32);
113 static inline UChar sel8x8_4 ( ULong w64 ) {
114 UInt hi32 = toUInt(w64 >> 32);
117 static inline UChar sel8x8_3 ( ULong w64 ) {
118 UInt lo32 = (UInt)w64;
121 static inline UChar sel8x8_2 ( ULong w64 ) {
122 UInt lo32 = (UInt)w64;
125 static inline UChar sel8x8_1 ( ULong w64 ) {
126 UInt lo32 = (UInt)w64;
129 static inline UChar sel8x8_0 ( ULong w64 ) {
130 UInt lo32 = (UInt)w64;
134 static inline UChar index8x8 ( ULong w64, UChar ix ) {
136 return toUChar((w64 >> (8*ix)) & 0xFF);