Home
last modified time | relevance | path

Searched refs:__c1 (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dwasm_simd128.h270 wasm_i8x16_make(int8_t __c0, int8_t __c1, int8_t __c2, int8_t __c3, int8_t __c4, in wasm_i8x16_make() argument
274 return (v128_t)(__i8x16){__c0, __c1, __c2, __c3, __c4, __c5, in wasm_i8x16_make()
280 wasm_u8x16_make(uint8_t __c0, uint8_t __c1, uint8_t __c2, uint8_t __c3, in wasm_u8x16_make() argument
284 return (v128_t)(__u8x16){__c0, __c1, __c2, __c3, __c4, __c5, in wasm_u8x16_make()
290 wasm_i16x8_make(int16_t __c0, int16_t __c1, int16_t __c2, int16_t __c3, in wasm_i16x8_make() argument
292 return (v128_t)(__i16x8){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7}; in wasm_i16x8_make()
296 wasm_u16x8_make(uint16_t __c0, uint16_t __c1, uint16_t __c2, uint16_t __c3, in wasm_u16x8_make() argument
298 return (v128_t)(__u16x8){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7}; in wasm_u16x8_make()
302 int32_t __c1, in wasm_i32x4_make() argument
305 return (v128_t)(__i32x4){__c0, __c1, __c2, __c3}; in wasm_i32x4_make()
[all …]
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2fixed.cpp101 const uint32_t __c1 = __s0high < __low1; in __mulShift_mod1e9() local
102 const uint64_t __s1low = __low2 + __high1 + __c1; // 128 in __mulShift_mod1e9()
103 const uint32_t __c2 = __s1low < __low2; // __high1 + __c1 can't overflow, so compare against __low2 in __mulShift_mod1e9()
136 const uint32_t __c1 = (__c / 100) << 1; in __append_n_digits() local
138 std::memcpy(__result + __olength - __i - 4, __DIGIT_TABLE + __c1, 2); in __append_n_digits()
165 const uint32_t __c1 = (__c / 100) << 1; in __append_d_digits() local
167 std::memcpy(__result + __olength + 1 - __i - 4, __DIGIT_TABLE + __c1, 2); in __append_d_digits()
214 const uint32_t __c1 = (__c / 100) << 1; in __append_nine_digits() local
216 std::memcpy(__result + 5 - __i, __DIGIT_TABLE + __c1, 2); in __append_nine_digits()
H A Dd2s.cpp526 const uint32_t __c1 = (__c / 100) << 1; in __to_chars() local
531 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c1, 2); in __to_chars()
544 const uint32_t __c1 = (__c / 100) << 1; in __to_chars() local
546 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c1, 2); in __to_chars()
602 const uint32_t __c1 = (__c / 100) << 1; in __to_chars() local
606 std::memcpy(__result + __olength - __i - 3, __DIGIT_TABLE + __c1, 2); in __to_chars()
620 const uint32_t __c1 = (__c / 100) << 1; in __to_chars() local
622 std::memcpy(__result + __olength - __i - 3, __DIGIT_TABLE + __c1, 2); in __to_chars()
H A Df2s.cpp567 const uint32_t __c1 = (__c / 100) << 1; in __to_chars() local
569 std::memcpy(_Mid -= 2, __DIGIT_TABLE + __c1, 2); in __to_chars()
619 const uint32_t __c1 = (__c / 100) << 1; in __to_chars() local
621 std::memcpy(__result + __olength - __i - 3, __DIGIT_TABLE + __c1, 2); in __to_chars()
/freebsd/contrib/llvm-project/libcxx/include/__string/
H A Dchar_traits.h91 assign(char_type& __c1, const char_type& __c2) _NOEXCEPT {
92 __c1 = __c2;
96 static inline _LIBCPP_HIDDEN _LIBCPP_CONSTEXPR bool eq(char_type __c1, char_type __c2) _NOEXCEPT {
97 return __c1 == __c2;
99 …static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool lt(char_type __c1, char_type __c2) _NOE…
100 return (unsigned char)__c1 < (unsigned char)__c2;
167 …static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c…
168 return __c1 == __c2;
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Drange_adaptor.h77 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto operator|(_Closure&& __c1, _OtherClosure&& __c2)…
80 …adaptor_closure_t(std::__compose(std::forward<_OtherClosure>(__c2), std::forward<_Closure>(__c1)));
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dis_permutation.h101 _D1 __c1 = 1;
104 ++__c1;
106 if (__c1 != __c2)
/freebsd/contrib/llvm-project/libcxx/include/
H A Dregex1816 _CharT __c1 = __s.__current_[-1];
1818 bool __is_c1_b = __c1 == '_' || __traits_.isctype(__c1, ctype_base::alnum);
2125 _LIBCPP_HIDE_FROM_ABI void __add_digraph(_CharT __c1, _CharT __c2) {
2127 …__digraphs_.push_back(std::make_pair(__traits_.translate_nocase(__c1), __traits_.translate_nocase(…
2129 __digraphs_.push_back(std::make_pair(__traits_.translate(__c1), __traits_.translate(__c2)));
2131 __digraphs_.push_back(std::make_pair(__c1, __c2));