Searched refs:excepts (Results 1 - 4 of 4) sorted by relevance

/haiku/src/system/libroot/posix/arch/x86_64/
H A Dfenv.c45 fesetexceptflag(const fexcept_t *flagp, int excepts) argument
50 env.__x87.__status &= ~excepts;
51 env.__x87.__status |= *flagp & excepts;
55 env.__mxcsr &= ~excepts;
56 env.__mxcsr |= *flagp & excepts;
63 feraiseexcept(int excepts) argument
65 fexcept_t ex = excepts;
67 fesetexceptflag(&ex, excepts);
/haiku/src/bin/network/telnet/
H A Dnetwork.c87 fd_set excepts; local
91 FD_ZERO(&excepts);
92 FD_SET(net, &excepts);
93 value = select(net+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
101 if (FD_ISSET(net, &excepts)) {
/haiku/src/system/libroot/posix/arch/x86/
H A Dfenv.c88 fesetexceptflag(const fexcept_t *flagp, int excepts) argument
94 env.__status &= ~excepts;
95 env.__status |= *flagp & excepts;
100 mxcsr &= ~excepts;
101 mxcsr |= *flagp & excepts;
109 feraiseexcept(int excepts) argument
111 fexcept_t ex = excepts;
113 fesetexceptflag(&ex, excepts);
/haiku/src/bin/network/telnetd/
H A Dutility.c102 fd_set excepts; local
106 FD_ZERO(&excepts);
107 FD_SET(s, &excepts);
109 value = select(s+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
115 if (FD_ISSET(s, &excepts)) {

Completed in 35 milliseconds