• Home
  • Raw
  • Download

Lines Matching refs:__c0

166 wasm_i8x16_make(int8_t __c0, int8_t __c1, int8_t __c2, int8_t __c3, int8_t __c4,  in wasm_i8x16_make()  argument
170 return (v128_t)(__i8x16){__c0, __c1, __c2, __c3, __c4, __c5, in wasm_i8x16_make()
176 wasm_i16x8_make(int16_t __c0, int16_t __c1, int16_t __c2, int16_t __c3, in wasm_i16x8_make() argument
178 return (v128_t)(__i16x8){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7}; in wasm_i16x8_make()
181 static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_i32x4_make(int32_t __c0, in wasm_i32x4_make() argument
185 return (v128_t)(__i32x4){__c0, __c1, __c2, __c3}; in wasm_i32x4_make()
188 static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_f32x4_make(float __c0, in wasm_f32x4_make() argument
192 return (v128_t)(__f32x4){__c0, __c1, __c2, __c3}; in wasm_f32x4_make()
195 static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_i64x2_make(int64_t __c0, in wasm_i64x2_make() argument
197 return (v128_t)(__i64x2){__c0, __c1}; in wasm_i64x2_make()
200 static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_f64x2_make(double __c0, in wasm_f64x2_make() argument
202 return (v128_t)(__f64x2){__c0, __c1}; in wasm_f64x2_make()
205 #define wasm_i8x16_const(__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7, __c8, \ argument
208 __REQUIRE_CONSTANT(__c0); \
224 (v128_t)(__i8x16){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7, \
228 #define wasm_i16x8_const(__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7) \ argument
230 __REQUIRE_CONSTANT(__c0); \
238 (v128_t)(__i16x8){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7}; \
241 #define wasm_i32x4_const(__c0, __c1, __c2, __c3) \ argument
243 __REQUIRE_CONSTANT(__c0); \
247 (v128_t)(__i32x4){__c0, __c1, __c2, __c3}; \
250 #define wasm_f32x4_const(__c0, __c1, __c2, __c3) \ argument
252 __REQUIRE_CONSTANT(__c0); \
256 (v128_t)(__f32x4){__c0, __c1, __c2, __c3}; \
259 #define wasm_i64x2_const(__c0, __c1) \ argument
261 __REQUIRE_CONSTANT(__c0); \
263 (v128_t)(__i64x2){__c0, __c1}; \
266 #define wasm_f64x2_const(__c0, __c1) \ argument
268 __REQUIRE_CONSTANT(__c0); \
270 (v128_t)(__f64x2){__c0, __c1}; \
1038 #define wasm_v8x16_shuffle(__a, __b, __c0, __c1, __c2, __c3, __c4, __c5, __c6, \ argument
1042 (__i8x16)(__a), (__i8x16)(__b), __c0, __c1, __c2, __c3, __c4, __c5, \
1045 #define wasm_v16x8_shuffle(__a, __b, __c0, __c1, __c2, __c3, __c4, __c5, __c6, \ argument
1048 (__i8x16)(__a), (__i8x16)(__b), (__c0)*2, (__c0)*2 + 1, (__c1)*2, \
1053 #define wasm_v32x4_shuffle(__a, __b, __c0, __c1, __c2, __c3) \ argument
1055 (__i8x16)(__a), (__i8x16)(__b), (__c0)*4, (__c0)*4 + 1, (__c0)*4 + 2, \
1056 (__c0)*4 + 3, (__c1)*4, (__c1)*4 + 1, (__c1)*4 + 2, (__c1)*4 + 3, \
1060 #define wasm_v64x2_shuffle(__a, __b, __c0, __c1) \ argument
1062 (__i8x16)(__a), (__i8x16)(__b), (__c0)*8, (__c0)*8 + 1, (__c0)*8 + 2, \
1063 (__c0)*8 + 3, (__c0)*8 + 4, (__c0)*8 + 5, (__c0)*8 + 6, (__c0)*8 + 7, \