Searched refs:__f (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_iomanip.h72 operator>>(basic_istream<_CharT,_Traits>& __is, _Resetiosflags __f) argument
74 __is.setf(ios_base::fmtflags(0), __f._M_mask);
80 operator<<(basic_ostream<_CharT,_Traits>& __os, _Resetiosflags __f) argument
82 __os.setf(ios_base::fmtflags(0), __f._M_mask);
106 operator>>(basic_istream<_CharT,_Traits>& __is, _Setiosflags __f) argument
108 __is.setf(__f._M_mask);
114 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setiosflags __f) argument
116 __os.setf(__f._M_mask);
141 operator>>(basic_istream<_CharT,_Traits>& __is, _Setbase __f) argument
143 __is.setf(__f
152 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setbase __f) argument
183 operator >>(basic_istream<_CharT,_Traits>& __is, _Setfill<_CharT> __f) argument
191 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setfill<_CharT> __f) argument
217 operator >>(basic_istream<_CharT,_Traits>& __is, _Setprecision __f) argument
225 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setprecision __f) argument
251 operator >>(basic_istream<_CharT,_Traits>& __is, _Setw __f) argument
259 operator <<(basic_ostream<_CharT,_Traits>& __os, _Setw __f) argument
[all...]
H A Dstd_ostream.h213 operator<<(double __f) argument
214 { return _M_insert(__f); }
217 operator<<(float __f) argument
221 return _M_insert(static_cast<double>(__f));
225 operator<<(long double __f) argument
226 { return _M_insert(__f); }
H A Dstd_istream.h214 operator>>(float& __f) argument
215 { return _M_extract(__f); }
218 operator>>(double& __f) argument
219 { return _M_extract(__f); }
222 operator>>(long double& __f) argument
223 { return _M_extract(__f); }
/freebsd-11-stable/contrib/libstdc++/config/locale/generic/
H A Dc_locale.cc60 float __f = strtof(__s, &__sanity); local
63 float __f = static_cast<float>(__d); local
65 if (!finitef (__f))
68 if (!finite (static_cast<double> (__f)))
71 if (isinf (static_cast<double> (__f)))
79 __v = __f;
/freebsd-11-stable/include/xlocale/
H A D_ctype.h72 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
74 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
77 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) argument
82 runes->__runetype[__c]) & __f;
86 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) argument
88 return (!!__maskrune_l(__c, __f, __loc));
97 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
99 __sbistype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
102 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) argument
107 runes->__runetype[__c] & __f;
111 __sbistype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cmath.h468 __capture_fpclassify(_Tp __f) { return fpclassify(__f); } argument
472 __capture_isfinite(_Tp __f) { return isfinite(__f); } argument
476 __capture_isinf(_Tp __f) { return isinf(__f); } argument
480 __capture_isnan(_Tp __f) { return isnan(__f); } argument
484 __capture_isnormal(_Tp __f) { return isnormal(__f); } argument
488 __capture_signbit(_Tp __f) argument
539 fpclassify(_Tp __f) argument
543 isfinite(_Tp __f) argument
547 isinf(_Tp __f) argument
551 isnan(_Tp __f) argument
555 isnormal(_Tp __f) argument
559 signbit(_Tp __f) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dstdio_filebuf.h91 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode,
145 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, argument
148 this->_M_file.sys_open(__f, __mode);
H A Dhashtable.h457 insert_unique(_InputIterator __f, _InputIterator __l) argument
458 { insert_unique(__f, __l, __iterator_category(__f)); }
462 insert_equal(_InputIterator __f, _InputIterator __l) argument
463 { insert_equal(__f, __l, __iterator_category(__f)); }
467 insert_unique(_InputIterator __f, _InputIterator __l, argument
470 for ( ; __f != __l; ++__f)
471 insert_unique(*__f);
476 insert_equal(_InputIterator __f, _InputIterator __l, input_iterator_tag) argument
485 insert_unique(_ForwardIterator __f, _ForwardIterator __l, forward_iterator_tag) argument
496 insert_equal(_ForwardIterator __f, _ForwardIterator __l, forward_iterator_tag) argument
[all...]
H A Dropeimpl.h400 _Rope_RopeFunction<_CharT, _Alloc>* __f local
402 __f->template _Rope_RopeFunction<_CharT, _Alloc>::~_Rope_RopeFunction();
403 _F_deallocate(__f, 1);
810 _RopeFunction* __f = (_RopeFunction*)__base; local
822 { (*(__f->_M_fn))(__start, __result_len, __section); }
963 _RopeFunction* __f = (_RopeFunction*)__r; local
970 (*(__f->_M_fn))(__begin, __len, __buffer);
990 char __f = __o.fill(); local
994 __o.put(__f);
1102 _RopeFunction* __f local
1356 _RopeFunction* __f = (_RopeFunction*)__r; local
[all...]
H A Dstdio_sync_filebuf.h71 stdio_sync_filebuf(std::__c_file* __f) argument
72 : _M_file(__f), _M_unget_buf(traits_type::eof())
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dstl_function.h713 mem_fun(_Ret (_Tp::*__f)())
714 { return mem_fun_t<_Ret, _Tp>(__f); }
718 mem_fun(_Ret (_Tp::*__f)() const)
719 { return const_mem_fun_t<_Ret, _Tp>(__f); }
723 mem_fun_ref(_Ret (_Tp::*__f)())
724 { return mem_fun_ref_t<_Ret, _Tp>(__f); }
728 mem_fun_ref(_Ret (_Tp::*__f)() const)
729 { return const_mem_fun_ref_t<_Ret, _Tp>(__f); }
733 mem_fun(_Ret (_Tp::*__f)(_Arg))
734 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
[all...]
H A Dlocalefwd.h188 __check_facet(const _Facet* __f) argument
190 if (!__f)
192 return *__f;
H A Dboost_concept_check.h320 const _Return& __r _IsUnused = __f();// require operator() member function
322 _Func __f;
330 __f(); // require operator() member function
332 _Func __f;
339 __r = __f(__arg); // require operator()
341 _Func __f;
349 __f(__arg); // require operator()
351 _Func __f;
359 __r = __f(__first, __second); // require operator()
361 _Func __f;
[all...]
H A Dvalarray_before.h412 _FunBase(const _Dom& __e, value_type __f(_Arg)) argument
413 : _M_expr(__e), _M_func(__f) {}
432 _ValFunClos(const _Dom& __e, _Tp __f(_Tp)) : _Base(__e, __f) {} argument
441 _ValFunClos(const valarray<_Tp>& __v, _Tp __f(_Tp)) : _Base(__v, __f) {} argument
452 _RefFunClos(const _Dom& __e, _Tp __f(const _Tp&))
453 : _Base(__e, __f) {}
463 _RefFunClos(const valarray<_Tp>& __v, _Tp __f(const _Tp&))
464 : _Base(__v, __f) {}
[all...]
H A Dlocale_classes.h183 locale(const locale& __other, _Facet* __f);
565 locale::locale(const locale& __other, _Facet* __f) argument
570 { _M_impl->_M_install_facet(&_Facet::id, __f); }
H A Dlocale_facets.h2302 put(iter_type __s, ios_base& __f, char_type __fill, bool __v) const argument
2303 { return this->do_put(__s, __f, __fill, __v); }
2344 put(iter_type __s, ios_base& __f, char_type __fill, long __v) const argument
2345 { return this->do_put(__s, __f, __fill, __v); }
2348 put(iter_type __s, ios_base& __f, char_type __fill, argument
2350 { return this->do_put(__s, __f, __fill, __v); }
2354 put(iter_type __s, ios_base& __f, char_type __fill, long long __v) const argument
2355 { return this->do_put(__s, __f, __fill, __v); }
2358 put(iter_type __s, ios_base& __f, char_type __fill, argument
2360 { return this->do_put(__s, __f, __fil
2407 put(iter_type __s, ios_base& __f, char_type __fill, double __v) const argument
2411 put(iter_type __s, ios_base& __f, char_type __fill, long double __v) const argument
2432 put(iter_type __s, ios_base& __f, char_type __fill, const void* __v) const argument
[all...]
/freebsd-11-stable/contrib/libstdc++/config/locale/gnu/
H A Dc_locale.cc52 float __f = __strtof_l(__s, &__sanity, __cloc); local
54 __v = __f;
/freebsd-11-stable/contrib/libstdc++/include/debug/
H A Dhash_map.h95 hash_map(_InputIterator __f, _InputIterator __l) argument
96 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l) { }
99 hash_map(_InputIterator __f, _InputIterator __l, size_type __n) argument
100 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n) { }
103 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, argument
105 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf) { }
108 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, argument
111 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf,
H A Dhash_multimap.h94 hash_multimap(_InputIterator __f, _InputIterator __l) argument
95 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l) { }
98 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n) argument
99 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n) { }
102 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n, argument
104 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf) { }
107 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n, argument
110 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf,
H A Dhash_multiset.h93 hash_multiset(_InputIterator __f, _InputIterator __l) argument
94 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l)
98 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n) argument
99 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n)
103 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n, argument
105 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf)
109 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n, argument
112 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf,
H A Dhash_set.h92 hash_set(_InputIterator __f, _InputIterator __l) argument
93 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l) { }
96 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) argument
97 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n) { }
100 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, argument
102 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf) { }
105 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, argument
108 : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n, __hf,
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dfunctional_iterate.h128 __invoke(_Functor& __f _GLIBCXX_COMMA _GLIBCXX_REF_PARAMS)
130 return __f(_GLIBCXX_ARGS);
141 __invoke(_Functor& __f _GLIBCXX_COMMA _GLIBCXX_REF_PARAMS)
143 return mem_fn(__f)(_GLIBCXX_ARGS);
154 __invoke(_Functor __f _GLIBCXX_COMMA _GLIBCXX_REF_PARAMS)
156 return __f(_GLIBCXX_ARGS);
416 _Bind(_Functor __f _GLIBCXX_COMMA _GLIBCXX_PARAMS)
417 : _M_f(__f) _GLIBCXX_COMMA _GLIBCXX_BIND_MEMBERS_INIT { }
437 _Bind_result(_Functor __f _GLIBCXX_COMMA _GLIBCXX_PARAMS)
438 : _M_f(__f) _GLIBCXX_COMM
725 operator =(_Functor __f) argument
841 function(_Functor __f, typename __gnu_cxx::__enable_if<!is_integral<_Functor>::value, _Useless>::__type) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dia32intrin.h179 __writeeflags(unsigned long long __f) argument
181 __builtin_ia32_writeeflags_u64(__f);
192 __writeeflags(unsigned int __f) argument
194 __builtin_ia32_writeeflags_u32(__f);
H A Davxintrin.h2975 float __f = *__a; local
2976 return __extension__ (__m128)(__v4sf){ __f, __f, __f, __f };
3013 float __f = *__a; local
3014 return __extension__ (__m256)(__v8sf){ __f, __f, __f, __f, __
3660 _mm256_set_ps(float __a, float __b, float __c, float __d, float __e, float __f, float __g, float __h) argument
3927 _mm256_setr_ps(float __a, float __b, float __c, float __d, float __e, float __f, float __g, float __h) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dfuture.cpp70 static __future_error_category __f; variable
71 return __f;

Completed in 132 milliseconds

12