Home
last modified time | relevance | path

Searched refs:__c0 (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dwasm_simd128.h271 wasm_i8x16_make(int8_t __c0, int8_t __c1, int8_t __c2, int8_t __c3, int8_t __c4, in wasm_i8x16_make() argument
275 return (v128_t)(__i8x16){__c0, __c1, __c2, __c3, __c4, __c5, in wasm_i8x16_make()
281 wasm_u8x16_make(uint8_t __c0, uint8_t __c1, uint8_t __c2, uint8_t __c3, in wasm_u8x16_make() argument
285 return (v128_t)(__u8x16){__c0, __c1, __c2, __c3, __c4, __c5, in wasm_u8x16_make()
291 wasm_i16x8_make(int16_t __c0, int16_t __c1, int16_t __c2, int16_t __c3, in wasm_i16x8_make() argument
293 return (v128_t)(__i16x8){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7}; in wasm_i16x8_make()
297 wasm_u16x8_make(uint16_t __c0, uint16_t __c1, uint16_t __c2, uint16_t __c3, in wasm_u16x8_make() argument
299 return (v128_t)(__u16x8){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7}; in wasm_u16x8_make()
302 static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_i32x4_make(int32_t __c0, in wasm_i32x4_make() argument
306 return (v128_t)(__i32x4){__c0, __c1, __c2, __c3}; in wasm_i32x4_make()
[all …]
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2s.cpp526 const uint32_t __c0 = (__c % 100) << 1; in __to_chars() local
531 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c0, 2); in __to_chars()
544 const uint32_t __c0 = (__c % 100) << 1; in __to_chars() local
546 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c0, 2); in __to_chars()
602 const uint32_t __c0 = (__c % 100) << 1; in __to_chars() local
606 std::memcpy(__result + __olength - __i - 1, __DIGIT_TABLE + __c0, 2); in __to_chars()
620 const uint32_t __c0 = (__c % 100) << 1; in __to_chars() local
622 std::memcpy(__result + __olength - __i - 1, __DIGIT_TABLE + __c0, 2); in __to_chars()
H A Dd2fixed.cpp136 const uint32_t __c0 = (__c % 100) << 1; in __append_n_digits() local
138 std::memcpy(__result + __olength - __i - 2, __DIGIT_TABLE + __c0, 2); in __append_n_digits()
165 const uint32_t __c0 = (__c % 100) << 1; in __append_d_digits() local
167 std::memcpy(__result + __olength + 1 - __i - 2, __DIGIT_TABLE + __c0, 2); in __append_d_digits()
214 const uint32_t __c0 = (__c % 100) << 1; in __append_nine_digits() local
216 std::memcpy(__result + 7 - __i, __DIGIT_TABLE + __c0, 2); in __append_nine_digits()
H A Df2s.cpp568 const uint32_t __c0 = (__c % 100) << 1; in __to_chars() local
570 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c0, 2); in __to_chars()
620 const uint32_t __c0 = (__c % 100) << 1; in __to_chars() local
622 std::memcpy(__result + __olength - __i - 1, __DIGIT_TABLE + __c0, 2); in __to_chars()