Searched refs:NFDBITS (Results 1 – 16 of 16) sorted by relevance
/external/iputils/ |
D | traceroute6.c | 280 #define NFDBITS (8*sizeof(fd_set)) macro 281 #define FD_SETSIZE NFDBITS 282 #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS))) 283 #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS))) 284 #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
|
/external/libevent/ |
D | select.c | 58 #ifndef NFDBITS 59 #define NFDBITS (sizeof(fd_mask)*8) macro 67 (DIV_ROUNDUP(n, NFDBITS) * sizeof(fd_mask))
|
D | ChangeLog | 319 o Fix select.c compilation on systems with no NFDBITS (49d1136)
|
/external/openssh/openbsd-compat/ |
D | bsd-poll.c | 60 nmemb = howmany(maxfd + 1 , NFDBITS); in poll()
|
/external/openssh/ |
D | ssh-pkcs11-helper.c | 303 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask); in main()
|
D | defines.h | 385 # define NFDBITS (8 * sizeof(unsigned long)) macro
|
D | sshconnect.c | 359 fdset = xcalloc(howmany(sockfd + 1, NFDBITS), in timeout_connect() 557 fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask); in ssh_exchange_identification()
|
D | packet.c | 1276 NFDBITS), sizeof(fd_mask)); in ssh_packet_read_seqnr() 1308 NFDBITS) * sizeof(fd_mask)); in ssh_packet_read_seqnr() 2041 NFDBITS), sizeof(fd_mask)); in ssh_packet_write_wait() 2047 NFDBITS) * sizeof(fd_mask)); in ssh_packet_write_wait()
|
D | ssh-keyscan.c | 758 read_wait_nfdset = howmany(maxfd, NFDBITS); in main()
|
D | ssh-agent.c | 995 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask); in prepare_select()
|
D | sftp-server.c | 1634 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask); in sftp_server_main()
|
D | sshd.c | 1260 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
|
D | config.h.in | 331 /* Define to 1 if you have the declaration of `NFDBITS', and to 0 if you
|
D | channels.c | 2203 nfdset = howmany(n+1, NFDBITS);
|
D | configure.ac | 1817 AC_CHECK_DECLS([howmany, NFDBITS], [], [], [[
|
D | configure | 18218 (void) NFDBITS;
|