/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
Xpoll.h | 113 #ifndef howmany 114 #define howmany(x,y) (((x)+((y)-1))/(y)) macro 119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)]; 155 * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the 160 ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \ 161 (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \ 162 (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \ 163 (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \ 164 (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \ 165 (howmany(FD_SETSIZE, NFDBITS) > 5 && (__XFDS_BITS(p, 5))) || [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xpoll.h | 113 #ifndef howmany 114 #define howmany(x,y) (((x)+((y)-1))/(y)) macro 119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)]; 155 * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the 160 ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \ 161 (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \ 162 (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \ 163 (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \ 164 (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \ 165 (howmany(FD_SETSIZE, NFDBITS) > 5 && (__XFDS_BITS(p, 5))) || [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xpoll.h | 113 #ifndef howmany 114 #define howmany(x,y) (((x)+((y)-1))/(y)) macro 119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)]; 155 * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the 160 ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \ 161 (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \ 162 (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \ 163 (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \ 164 (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \ 165 (howmany(FD_SETSIZE, NFDBITS) > 5 && (__XFDS_BITS(p, 5))) || [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
param.h | 51 #ifndef howmany 52 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
param.h | 51 #ifndef howmany 52 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
param.h | 51 #ifndef howmany 52 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
|
/external/openssh/ |
authfd.h | 66 int howmany; member in struct:__anon12423
|
authfd.c | 212 auth->howmany = 0; 296 auth->howmany = buffer_get_int(&auth->identities); 297 if ((u_int)auth->howmany > 1024) 299 auth->howmany); 301 return auth->howmany; 323 if (auth->howmany <= 0) 352 auth->howmany--;
|
packet.c | 1036 setp = (fd_set *)xcalloc(howmany(active_state->connection_in + 1, 1061 memset(setp, 0, howmany(active_state->connection_in + 1, [all...] |
ssh-pkcs11-helper.c | 300 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask);
|
defines.h | 493 # define howmany(x,y) (((x)+((y)-1))/(y)) macro
|
sshconnect.c | 270 fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS), 450 fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask); [all...] |
ssh-keyscan.c | 717 read_wait_nfdset = howmany(maxfd, NFDBITS);
|
sftp-server.c | 1488 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask); [all...] |
ssh-agent.c | 952 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask); [all...] |
sshd.c | 1123 fdset = (fd_set *)xcalloc(howmany(maxfd + 1, NFDBITS), [all...] |
channels.c | [all...] |
/external/chromium/third_party/libevent/ |
select.c | 59 #ifndef howmany 60 #define howmany(x, y) (((x)+((y)-1))/(y)) macro 111 select_resize(sop, howmany(32 + 1, NFDBITS)*sizeof(fd_mask)); 285 (howmany(ev->ev_fd + 1, NFDBITS) * sizeof(fd_mask)))
|
/external/openssh/openbsd-compat/ |
bsd-poll.c | 57 nmemb = howmany(maxfd + 1 , NFDBITS);
|
/system/core/toolbox/ |
newfs_msdos.c | 239 #define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro 516 howmany((RESFTE + (bpb.spc ? MINCLS16 : MAXCLS12 + 1)) * 519 howmany(bpb.rde ? bpb.rde : DEFRDE, 522 (bpb.spc ? bpb.spc : howmany(DEFBLK, bpb.bps))) 526 howmany((RESFTE + MAXCLS16) * 2, bpb.bps) * bpb.nft + 527 howmany(DEFRDE, bpb.bps / sizeof(struct de)) + 529 (bpb.spc ? bpb.spc : howmany(8192, bpb.bps))) 558 rds = howmany(bpb.rde, bpb.bps / sizeof(struct de)); 560 for (bpb.spc = howmany(fat == 16 ? DEFBLK16 : DEFBLK, bpb.bps); 563 howmany((RESFTE + maxcls(fat)) * (fat / BPN) [all...] |
du.c | 69 #define howmany(x, y) (((x)+((y)-1))/(y)) macro 236 (long long)howmany(blocks, (int64_t)blocksize),
|
/external/libppp/src/ |
defs.c | 396 return (fd_set *)malloc(howmany(getdtablesize(), NFDBITS) * sizeof (fd_mask)); 402 memset(s, '\0', howmany(getdtablesize(), NFDBITS) * sizeof (fd_mask));
|
/bionic/libc/stdio/ |
vfprintf.c | 236 #define PAD(howmany, with) do { \ 237 if ((n = (howmany)) > 0) { \
|