Searched refs:__fd (Results 1 – 6 of 6) sorted by relevance
| /src/include/ssp/ |
| H A D | unistd.h | 67 __ssp_redirect(ssize_t, _FORTIFY_SOURCE_read, (int __fd, void *__buf, 68 size_t __len), (__fd, __buf, __len)); 69 __ssp_redirect(ssize_t, pread, (int __fd, void *__buf, size_t __len, 70 off_t __offset), (__fd, __buf, __len, __offset)); 74 __ssp_redirect(ssize_t, readlinkat, (int __fd, const char *__restrict __path, 75 char *__restrict __buf, size_t __len), (__fd, __path, __buf, __len)); 84 __ssp_redirect(int, ttyname_r, (int __fd, char *__buf, size_t __len), 85 (__fd, __buf, __len));
|
| /src/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | duration.h | 73 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _ToDuration operator()(const _FromDuration& __fd) const { 74 return _ToDuration(static_cast<typename _ToDuration::rep>(__fd.count())); 80 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _ToDuration operator()(const _FromDuration& __fd) const { 83 …static_cast<typename _ToDuration::rep>(static_cast<_Ct>(__fd.count()) / static_cast<_Ct>(_Period::… 89 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _ToDuration operator()(const _FromDuration& __fd) const { 92 …static_cast<typename _ToDuration::rep>(static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::… 98 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _ToDuration operator()(const _FromDuration& __fd) const { 101 …static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num) / static_cast<_Ct>(_Period::den))); 106 …PP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _ToDuration duration_cast(const duration<_Rep, _Period>& __fd) { 107 return __duration_cast<duration<_Rep, _Period>, _ToDuration>()(__fd);
|
| /src/contrib/llvm-project/libcxx/src/ryu/ |
| H A D | f2s.cpp | 289 __floating_decimal_32 __fd; in __f2d() local 290 __fd.__exponent = __exp; in __f2d() 291 __fd.__mantissa = _Output; in __f2d() 292 return __fd; in __f2d()
|
| H A D | d2s.cpp | 349 __floating_decimal_64 __fd; in __d2d() local 350 __fd.__exponent = __exp; in __d2d() 351 __fd.__mantissa = _Output; in __d2d() 352 return __fd; in __d2d()
|
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | locale | 2358 int& __fd); 2372 int& __fd) { 2382 __fd = __mp.frac_digits(); 2392 __fd = __mp.frac_digits(); 2502 int __fd; 2503 …ney_get<_CharT>::__gather_info(__intl, __loc, __pat, __dp, __ts, __grp, __sym, __psn, __nsn, __fd); 2601 if (__fd > 0) { 2606 for (++__b; __fd > 0; --__fd, ++__b) { 2731 int& __fd); 2747 int __fd); [all …]
|
| H A D | fstream | 267 _LIBCPP_HIDE_FROM_ABI basic_filebuf* __open(int __fd, ios_base::openmode __mode); 697 inline basic_filebuf<_CharT, _Traits>* basic_filebuf<_CharT, _Traits>::__open(int __fd, ios_base::o… 704 return __do_open(fdopen(__fd, __mdstr), __mode); 1131 _LIBCPP_HIDE_FROM_ABI void __open(int __fd, ios_base::openmode __mode); 1225 inline void basic_ifstream<_CharT, _Traits>::__open(int __fd, ios_base::openmode __mode) { 1226 if (__sb_.__open(__fd, __mode | ios_base::in)) 1288 _LIBCPP_HIDE_FROM_ABI void __open(int __fd, ios_base::openmode __mode); 1382 inline void basic_ofstream<_CharT, _Traits>::__open(int __fd, ios_base::openmode __mode) { 1383 if (__sb_.__open(__fd, __mode | ios_base::out))
|