HomeSort by relevance Sort by last modified time
    Searched refs:howmany (Results 1 - 5 of 5) sorted by null

  /prebuilt/linux-x86/toolchain/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...]
  /prebuilt/linux-x86/toolchain/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
  /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)))
  /system/core/toolbox/
newfs_msdos.c 239 #define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
515 howmany((RESFTE + (bpb.spc ? MINCLS16 : MAXCLS12 + 1)) *
518 howmany(bpb.rde ? bpb.rde : DEFRDE,
521 (bpb.spc ? bpb.spc : howmany(DEFBLK, bpb.bps)))
525 howmany((RESFTE + MAXCLS16) * 2, bpb.bps) * bpb.nft +
526 howmany(DEFRDE, bpb.bps / sizeof(struct de)) +
528 (bpb.spc ? bpb.spc : howmany(8192, bpb.bps)))
557 rds = howmany(bpb.rde, bpb.bps / sizeof(struct de));
559 for (bpb.spc = howmany(fat == 16 ? DEFBLK16 : DEFBLK, bpb.bps);
562 howmany((RESFTE + maxcls(fat)) * (fat / BPN)
    [all...]
  /bionic/libc/stdio/
vfprintf.c 236 #define PAD(howmany, with) do { \
237 if ((n = (howmany)) > 0) { \

Completed in 111 milliseconds