Searched refs:__fd (Results 1 – 8 of 8) sorted by relevance
/external/u-boot/arch/mips/include/asm/ |
D | posix_types.h | 56 static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp) in __FD_SET() argument 58 unsigned long __tmp = __fd / __NFDBITS; in __FD_SET() 59 unsigned long __rem = __fd % __NFDBITS; in __FD_SET() 64 static __inline__ void __FD_CLR(unsigned long __fd, __kernel_fd_set *__fdsetp) in __FD_CLR() argument 66 unsigned long __tmp = __fd / __NFDBITS; in __FD_CLR() 67 unsigned long __rem = __fd % __NFDBITS; in __FD_CLR() 72 static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p) in __FD_ISSET() argument 74 unsigned long __tmp = __fd / __NFDBITS; in __FD_ISSET() 75 unsigned long __rem = __fd % __NFDBITS; in __FD_ISSET()
|
/external/u-boot/arch/sh/include/asm/ |
D | posix_types.h | 53 static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp) in __FD_SET() argument 55 unsigned long __tmp = __fd / __NFDBITS; in __FD_SET() 56 unsigned long __rem = __fd % __NFDBITS; in __FD_SET() 61 static __inline__ void __FD_CLR(unsigned long __fd, __kernel_fd_set *__fdsetp) in __FD_CLR() argument 63 unsigned long __tmp = __fd / __NFDBITS; in __FD_CLR() 64 unsigned long __rem = __fd % __NFDBITS; in __FD_CLR() 70 static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p) in __FD_ISSET() argument 72 unsigned long __tmp = __fd / __NFDBITS; in __FD_ISSET() 73 unsigned long __rem = __fd % __NFDBITS; in __FD_ISSET()
|
/external/honggfuzz/examples/terminal-emulators/ |
D | libclose.c | 20 int fcntl(int __fd, int __cmd, ...) { in fcntl() argument 29 if (__fd == 1022 || __fd == 1023) { in fcntl() 35 return syscall(__NR_fcntl, __fd, __cmd, a1, a2, a3, a4); in fcntl()
|
/external/ltp/testcases/kernel/syscalls/epoll2/include/ |
D | epoll.h | 105 extern int epoll_ctl (int __epfd, int __op, int __fd,
|
/external/libcxx/include/ |
D | locale | 2750 string_type& __nsn, int& __fd); 2759 string_type& __nsn, int& __fd) 2772 __fd = __mp.frac_digits(); 2785 __fd = __mp.frac_digits(); 2899 int __fd; 2901 __sym, __psn, __nsn, __fd); 3043 if (__fd > 0) 3050 for (++__b; __fd > 0; --__fd, ++__b) 3190 int& __fd); 3198 int __fd); [all …]
|
D | fstream | 245 basic_filebuf* __open(int __fd, ios_base::openmode __mode); 575 basic_filebuf<_CharT, _Traits>::__open(int __fd, ios_base::openmode __mode) { 580 __file_ = fdopen(__fd, __mdstr); 1189 void __open(int __fd, ios_base::openmode __mode); 1326 void basic_ifstream<_CharT, _Traits>::__open(int __fd, 1328 if (__sb_.__open(__fd, __mode | ios_base::in)) 1402 void __open(int __fd, ios_base::openmode __mode); 1539 void basic_ofstream<_CharT, _Traits>::__open(int __fd, 1541 if (__sb_.__open(__fd, __mode | ios_base::out))
|
D | functional | 2781 _DecayFunc __fd; 2789 noexcept(noexcept(!_VSTD::invoke(__fd, _VSTD::forward<_Args>(__args)...))) 2790 -> decltype( !_VSTD::invoke(__fd, _VSTD::forward<_Args>(__args)...)) 2791 { return !_VSTD::invoke(__fd, _VSTD::forward<_Args>(__args)...); } 2796 noexcept(noexcept(!_VSTD::invoke(_VSTD::move(__fd), _VSTD::forward<_Args>(__args)...))) 2797 -> decltype( !_VSTD::invoke(_VSTD::move(__fd), _VSTD::forward<_Args>(__args)...)) 2798 { return !_VSTD::invoke(_VSTD::move(__fd), _VSTD::forward<_Args>(__args)...); } 2803 noexcept(noexcept(!_VSTD::invoke(__fd, _VSTD::forward<_Args>(__args)...))) 2804 -> decltype( !_VSTD::invoke(__fd, _VSTD::forward<_Args>(__args)...)) 2805 { return !_VSTD::invoke(__fd, _VSTD::forward<_Args>(__args)...); } [all …]
|
D | chrono | 863 _ToDuration operator()(const _FromDuration& __fd) const 865 return _ToDuration(static_cast<typename _ToDuration::rep>(__fd.count())); 873 _ToDuration operator()(const _FromDuration& __fd) const 877 static_cast<_Ct>(__fd.count()) / static_cast<_Ct>(_Period::den))); 885 _ToDuration operator()(const _FromDuration& __fd) const 889 static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num))); 897 _ToDuration operator()(const _FromDuration& __fd) const 901 static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num) 914 duration_cast(const duration<_Rep, _Period>& __fd) 916 return __duration_cast<duration<_Rep, _Period>, _ToDuration>()(__fd);
|