Home
last modified time | relevance | path

Searched refs:__c2 (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dchar_traits.h110 assign(char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
114 std::construct_at(__builtin_addressof(__c1), __c2); in _GLIBCXX_VISIBILITY()
117 __c1 = __c2; in _GLIBCXX_VISIBILITY()
121 eq(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
122 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
125 lt(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
126 { return __c1 < __c2; } in _GLIBCXX_VISIBILITY()
155 eq_int_type(const int_type& __c1, const int_type& __c2) in _GLIBCXX_VISIBILITY()
156 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
341 assign(char_type& __c1, const char_type& __c2) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY()
[all …]
H A Dboost_concept_check.h693 __c.swap(__c2); in _GLIBCXX_VISIBILITY()
696 _Container __c, __c2; in _GLIBCXX_VISIBILITY()
820 __c2 _IsUnused(__first, __last); in _GLIBCXX_VISIBILITY()
H A Distream.tcc394 char_type __c2 = traits_type::to_char_type(__c); in get()
399 && !traits_type::eq_int_type(__sb.sputc(__c2), __eof)) in get()
403 __c2 = traits_type::to_char_type(__c); in get()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dchar_traits.h102 assign(char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
103 { __c1 = __c2; } in _GLIBCXX_VISIBILITY()
106 eq(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
107 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
110 lt(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
111 { return __c1 < __c2; } in _GLIBCXX_VISIBILITY()
140 eq_int_type(const int_type& __c1, const int_type& __c2) in _GLIBCXX_VISIBILITY()
141 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
356 assign(char_type& __c1, const char_type& __c2) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY()
357 { __c1 = __c2; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dboost_concept_check.h604 __c.swap(__c2); in _GLIBCXX_VISIBILITY()
607 _Container __c, __c2; in _GLIBCXX_VISIBILITY()
731 __c2 _IsUnused(__first, __last); in _GLIBCXX_VISIBILITY()
H A Distream.tcc377 char_type __c2 = traits_type::to_char_type(__c); in get()
381 && !traits_type::eq_int_type(__sb.sputc(__c2), __eof)) in get()
385 __c2 = traits_type::to_char_type(__c); in get()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dpod_char_traits.h106 assign(char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
107 { __c1 = __c2; } in _GLIBCXX_VISIBILITY()
110 eq(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
111 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
114 lt(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
115 { return __c1 < __c2; } in _GLIBCXX_VISIBILITY()
178 eq_int_type(const int_type& __c1, const int_type& __c2) in _GLIBCXX_VISIBILITY()
179 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dpod_char_traits.h106 assign(char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
107 { __c1 = __c2; } in _GLIBCXX_VISIBILITY()
110 eq(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
111 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
114 lt(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
115 { return __c1 < __c2; } in _GLIBCXX_VISIBILITY()
178 eq_int_type(const int_type& __c1, const int_type& __c2) in _GLIBCXX_VISIBILITY()
179 { return __c1 == __c2; } in _GLIBCXX_VISIBILITY()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A D__string161 assign(char_type& __c1, const char_type& __c2) _NOEXCEPT {__c1 = __c2;}
162 static inline _LIBCPP_CONSTEXPR bool eq(char_type __c1, char_type __c2) _NOEXCEPT
163 {return __c1 == __c2;}
164 static inline _LIBCPP_CONSTEXPR bool lt(char_type __c1, char_type __c2) _NOEXCEPT
165 {return __c1 < __c2;}
188 static inline _LIBCPP_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) _NOEXCEPT
189 {return __c1 == __c2;}
320 void assign(char_type& __c1, const char_type& __c2) _NOEXCEPT {__c1 = __c2;}
321 static inline _LIBCPP_CONSTEXPR bool eq(char_type __c1, char_type __c2) _NOEXCEPT
322 {return __c1 == __c2;}
[all …]
H A D__debug248 void swap(void* __c1, void* __c2);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/
H A Dwasm_simd128.h211 wasm_i8x16_make(int8_t __c0, int8_t __c1, int8_t __c2, int8_t __c3, int8_t __c4, in wasm_i8x16_make() argument
215 return (v128_t)(__i8x16){__c0, __c1, __c2, __c3, __c4, __c5, in wasm_i8x16_make()
221 wasm_i16x8_make(int16_t __c0, int16_t __c1, int16_t __c2, int16_t __c3, in wasm_i16x8_make() argument
223 return (v128_t)(__i16x8){__c0, __c1, __c2, __c3, __c4, __c5, __c6, __c7}; in wasm_i16x8_make()
228 int32_t __c2, in wasm_i32x4_make() argument
230 return (v128_t)(__i32x4){__c0, __c1, __c2, __c3}; in wasm_i32x4_make()
240 float __c2, in wasm_f32x4_make() argument
242 return (v128_t)(__f32x4){__c0, __c1, __c2, __c3}; in wasm_f32x4_make()
251 wasm_i8x16_const(int8_t __c0, int8_t __c1, int8_t __c2, int8_t __c3, in wasm_i8x16_const() argument
255 __REQUIRE_CONSTANT(__c0) __REQUIRE_CONSTANT(__c1) __REQUIRE_CONSTANT(__c2) in wasm_i8x16_const()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Dell_integral.tcc95 const _Tp __c2 = _Tp(1) / _Tp(10); in __ellint_rf() local
131 const _Tp __s = _Tp(1) + (__c1 * __e2 - __c2 - __c3 * __e3) * __e2 in __ellint_rf()
337 const _Tp __c2 = _Tp(1) / _Tp(6); in __ellint_rd() local
382 * (__c2 * __ef in __ellint_rd()
512 const _Tp __c2 = _Tp(9) / _Tp(22); in __ellint_rc() local
538 * (__c3 + __sn*(__c1 + __sn * (__c4 + __sn * __c2))); in __ellint_rc()
588 const _Tp __c2 = _Tp(1) / _Tp(3); in __ellint_rj() local
643 _Tp __s2 = __eb * (__c2 / _Tp(2) in __ellint_rj()
645 _Tp __s3 = __pndev * __ea * (__c2 - __pndev * __c3) in __ellint_rj()
646 - __c2 * __pndev * __ec; in __ellint_rj()
H A Drandom.tcc1091 const _RealType __c2 = _M_c2b + __c1; in operator ()() local
1092 const _RealType __c3 = __c2 + 1; in operator ()()
1117 else if (__u <= __c2) in operator ()()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dell_integral.tcc93 const _Tp __c2 = _Tp(1) / _Tp(10); in __ellint_rf() local
129 const _Tp __s = _Tp(1) + (__c1 * __e2 - __c2 - __c3 * __e3) * __e2 in __ellint_rf()
333 const _Tp __c2 = _Tp(1) / _Tp(6); in __ellint_rd() local
378 * (__c2 * __ef in __ellint_rd()
506 const _Tp __c2 = _Tp(9) / _Tp(22); in __ellint_rc() local
532 * (__c3 + __sn*(__c1 + __sn * (__c4 + __sn * __c2))); in __ellint_rc()
579 const _Tp __c2 = _Tp(1) / _Tp(3); in __ellint_rj() local
634 _Tp __s2 = __eb * (__c2 / _Tp(2) in __ellint_rj()
636 _Tp __s3 = __pndev * __ea * (__c2 - __pndev * __c3) in __ellint_rj()
637 - __c2 * __pndev * __ec; in __ellint_rj()
H A Drandom.tcc1091 const _RealType __c2 = _M_c2b + __c1; in operator ()() local
1092 const _RealType __c3 = __c2 + 1; in operator ()()
1117 else if (__u <= __c2) in operator ()()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr2/
H A Ddynamic_bitset.tcc238 const char_type __c2 = _Traits::to_char_type(__c1); in operator >>()
239 if (_Traits::eq(__c2, __zero)) in operator >>()
241 else if (_Traits::eq(__c2, __one)) in operator >>()
244 eq_int_type(__is.rdbuf()->sputbackc(__c2), in operator >>()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr2/
H A Ddynamic_bitset.tcc238 const char_type __c2 = _Traits::to_char_type(__c1); in operator >>()
239 if (_Traits::eq(__c2, __zero)) in operator >>()
241 else if (_Traits::eq(__c2, __one)) in operator >>()
244 eq_int_type(__is.rdbuf()->sputbackc(__c2), in operator >>()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree.h3309 enum tree_code __c1, enum tree_code __c2) in tree_check2() argument
3312 && TREE_CODE (__t) != __c2) in tree_check2()
3313 tree_check_failed (__t, __f, __l, __g, __c1, __c2, 0); in tree_check2()
3319 enum tree_code __c1, enum tree_code __c2) in tree_not_check2() argument
3322 || TREE_CODE (__t) == __c2) in tree_not_check2()
3323 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, 0); in tree_not_check2()
3329 enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) in tree_check3() argument
3332 && TREE_CODE (__t) != __c2 in tree_check3()
3334 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, 0); in tree_check3()
3340 enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) in tree_not_check3() argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree.h3472 enum tree_code __c1, enum tree_code __c2) in tree_check2() argument
3475 && TREE_CODE (__t) != __c2) in tree_check2()
3476 tree_check_failed (__t, __f, __l, __g, __c1, __c2, 0); in tree_check2()
3482 enum tree_code __c1, enum tree_code __c2) in tree_not_check2() argument
3485 || TREE_CODE (__t) == __c2) in tree_not_check2()
3486 tree_not_check_failed (__t, __f, __l, __g, __c1, __c2, 0); in tree_not_check2()
3492 enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) in tree_check3() argument
3495 && TREE_CODE (__t) != __c2 in tree_check3()
3497 tree_check_failed (__t, __f, __l, __g, __c1, __c2, __c3, 0); in tree_check3()
3503 enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) in tree_not_check3() argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dratio223 static constexpr uintmax_t __c2 = uintmax_t(1) << __coshift;
227 static constexpr uintmax_t __n0_top = (__shift != 0) ? (__n0 / __c2) : 0;
H A Dbitset1507 const char_type __c2 = _Traits::to_char_type(__c1);
1508 if (_Traits::eq(__c2, __zero))
1510 else if (_Traits::eq(__c2, __one))
1513 eq_int_type(__is.rdbuf()->sputbackc(__c2),
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dratio223 static constexpr uintmax_t __c2 = uintmax_t(1) << __coshift;
227 static constexpr uintmax_t __n0_top = (__shift != 0) ? (__n0 / __c2) : 0;
H A Dbitset1504 const char_type __c2 = _Traits::to_char_type(__c1);
1505 if (_Traits::eq(__c2, __zero))
1507 else if (_Traits::eq(__c2, __one))
1510 eq_int_type(__is.rdbuf()->sputbackc(__c2),
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
H A Dmultiway_merge.h413 __c0, __c1, __c2) \ in multiway_merge_4_variant() argument
424 if (__seq ## __a __c2 __seq ## __d) \ in multiway_merge_4_variant()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
H A Dmultiway_merge.h413 __c0, __c1, __c2) \ in multiway_merge_4_variant() argument
424 if (__seq ## __a __c2 __seq ## __d) \ in multiway_merge_4_variant()

12