Home
last modified time | relevance | path

Searched refs:__c2 (Results 1 – 6 of 6) 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()
303 int32_t __c2, in wasm_i32x4_make() argument
305 return (v128_t)(__i32x4){__c0, __c1, __c2, __c3}; in wasm_i32x4_make()
[all …]
/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 … _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) _NOEXCEPT {
168 return __c1 == __c2;
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dis_permutation.h92 _D1 __c2 = 0;
95 ++__c2;
97 if (__c2 == 0)
106 if (__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 …return __range_adaptor_closure_t(std::__compose(std::forward<_OtherClosure>(__c2), std::forward<_C…
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2fixed.cpp103 const uint32_t __c2 = __s1low < __low2; // __high1 + __c1 can't overflow, so compare against __low2 in __mulShift_mod1e9() local
104 const uint64_t __s1high = __high2 + __c2; // 192 in __mulShift_mod1e9()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dregex1817 _CharT __c2 = *__s.__current_;
1819 bool __is_c2_b = __c2 == '_' || __traits_.isctype(__c2, ctype_base::alnum);
2125 _LIBCPP_HIDE_FROM_ABI void __add_digraph(_CharT __c1, _CharT __c2) {
2127 …phs_.push_back(std::make_pair(__traits_.translate_nocase(__c1), __traits_.translate_nocase(__c2)));
2129 __digraphs_.push_back(std::make_pair(__traits_.translate(__c1), __traits_.translate(__c2)));
2131 __digraphs_.push_back(std::make_pair(__c1, __c2));