Searched defs:FD_SETSIZE (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dfd_set.h55 * FD_SETSIZE may be defined by the user, but the default here should
58 #ifndef FD_SETSIZE
59 #define FD_SETSIZE 256 macro
63 __fd_mask fds_bits[__howmany(FD_SETSIZE, __NFDBITS)];
78 for (__i = 0; __i < __howmany(FD_SETSIZE, __NFDBITS); __i++) \
100 for (__i = 0; __i < __howmany(FD_SETSIZE, __NFDBITS); __i++) \
/vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/
H A DXpoll.h72 #ifndef FD_SETSIZE
73 #define FD_SETSIZE XFD_SETSIZE macro
90 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
118 * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the
123 ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \
124 (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \
125 (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \
126 (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \
127 (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \
128 (howmany(FD_SETSIZE, NFDBIT
161 #define FD_SETSIZE macro
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw32poll.c42 /* The default value of FD_SETSIZE is 64. */
43 #define FD_SETSIZE 1024 macro
250 if ((nrd > FD_SETSIZE) || (nwt > FD_SETSIZE) || (nex > FD_SETSIZE)) {
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_OSlib.h561 #define FD_SETSIZE 256 macro
605 #define FD_SETSIZE 256 macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dxf86_OSlib.h542 #define FD_SETSIZE 256 macro
586 #define FD_SETSIZE 256 macro
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86_OSlib.h602 #define FD_SETSIZE 256 macro
646 #define FD_SETSIZE 256 macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_OSlib.h610 #define FD_SETSIZE 256 macro
654 #define FD_SETSIZE 256 macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86_OSlib.h612 #define FD_SETSIZE 256 macro
656 #define FD_SETSIZE 256 macro
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dsockets.h197 #undef FD_SETSIZE macro
198 #define FD_SETSIZE 16 macro
205 unsigned char fd_bits [(FD_SETSIZE+7)/8];
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86_OSlib.h618 #define FD_SETSIZE 256 macro
662 #define FD_SETSIZE 256 macro
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/
H A D_nto.h69 #undef FD_SETSIZE macro
70 #define FD_SETSIZE 4096 macro
157 #define _PR_MD_MAX_OSFD FD_SETSIZE
H A D_unixos.h42 * If FD_SETSIZE is not defined on the command line, set the default value
46 * Linux: FD_SETSIZE is defined in /usr/include/sys/select.h and should
50 #ifndef FD_SETSIZE
51 #define FD_SETSIZE 4096 macro
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmacsocket.h118 #define FD_SETSIZE 64 macro
120 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dsockets.h347 #undef FD_SETSIZE macro
348 /* Make FD_SETSIZE match NUM_SOCKETS in socket.c */
349 #define FD_SETSIZE MEMP_NUM_NETCONN macro
356 unsigned char fd_bits [(FD_SETSIZE+7)/8];
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/
H A Dptio.c48 #define FD_SETSIZE (16 * 1024) macro
452 PR_ASSERT(op->arg1.osfd < FD_SETSIZE);
599 if (op->arg1.osfd < FD_SETSIZE) {
4140 if (maxfd >= FD_SETSIZE)
4182 if (maxfd >= FD_SETSIZE)
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinsock.h56 # undef FD_SETSIZE macro
62 # define FD_SETSIZE Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library macro
76 # undef FD_SETSIZE macro
101 # undef FD_SETSIZE macro
431 # ifndef FD_SETSIZE
432 # define FD_SETSIZE 64 macro
444 SOCKET fd_array[FD_SETSIZE]; /* an array of SOCKETs */
477 if (((cast*)(set))->fd_count < FD_SETSIZE) \
490 if (__i == ((cast*)(set))->fd_count && ((cast*)(set))->fd_count < FD_SETSIZE) \
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinsock.h56 # undef FD_SETSIZE macro
62 # define FD_SETSIZE Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library macro
76 # undef FD_SETSIZE macro
101 # undef FD_SETSIZE macro
433 # ifndef FD_SETSIZE
434 # define FD_SETSIZE 64 macro
446 SOCKET fd_array[FD_SETSIZE]; /* an array of SOCKETs */
479 if (((cast*)(set))->fd_count < FD_SETSIZE) \
492 if (__i == ((cast*)(set))->fd_count && ((cast*)(set))->fd_count < FD_SETSIZE) \

Completed in 105 milliseconds