Home
last modified time | relevance | path

Searched refs:howmany (Results 1 – 16 of 16) sorted by relevance

/external/llvm/test/CodeGen/ARM/
Ddivmod.ll78 define i32 @howmany(i32 %x, i32 %y) nounwind {
80 ; A8-LABEL: howmany:
84 ; SWIFT-LABEL: howmany:
/external/llvm-project/llvm/test/CodeGen/ARM/
Ddivmod.ll79 define i32 @howmany(i32 %x, i32 %y) nounwind {
81 ; A8-LABEL: howmany:
85 ; SWIFT-LABEL: howmany:
/external/newfs_msdos/
Dmkfs_msdos.c466 howmany((RESFTE + (bpb.bpbSecPerClust ? MINCLS16 : MAXCLS12 + 1)) * in mkfs_msdos()
470 howmany(bpb.bpbRootDirEnts ? bpb.bpbRootDirEnts : DEFRDE, in mkfs_msdos()
474 howmany(DEFBLK, bpb.bpbBytesPerSec))) in mkfs_msdos()
478 howmany((RESFTE + MAXCLS16) * 2, bpb.bpbBytesPerSec) * in mkfs_msdos()
480 howmany(DEFRDE, bpb.bpbBytesPerSec / sizeof(struct de)) + in mkfs_msdos()
483 howmany(8192, bpb.bpbBytesPerSec))) in mkfs_msdos()
541 rds = howmany(bpb.bpbRootDirEnts, in mkfs_msdos()
544 for (bpb.bpbSecPerClust = howmany(fat == 16 ? DEFBLK16 : in mkfs_msdos()
547 howmany((RESFTE + maxcls(fat)) * (fat / BPN), in mkfs_msdos()
570 x2 = howmany((RESFTE + MIN(x, maxcls(fat))) * (fat / BPN), in mkfs_msdos()
/external/python/cpython2/Include/
Dpyport.h847 #ifndef howmany
848 #define howmany(x, y) (((x)+((y)-1))/(y))
852 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dlibbitmask.c42 #define howmany(x,y) (((x)+((y)-1))/(y)) macro
45 #define longsperbits(n) howmany(n, bitsperlong)
136 for (chunk = howmany(bmp->size, HEXCHUNKSZ) - 1; chunk >= 0; chunk--) { in bitmask_displayhex()
/external/openssh/openbsd-compat/
Dbsd-poll.c58 nmemb = howmany(maxfd + 1 , NFDBITS); in poll()
/external/igt-gpu-tools/tests/
Dkms_atomic_transition.c737 static void run_modeset_tests(igt_display_t *display, int howmany, bool nonblocking, bool fencing) in run_modeset_tests() argument
794 if (igt_hweight(i) > howmany) in run_modeset_tests()
806 if (igt_hweight(j) > howmany) in run_modeset_tests()
809 if (igt_hweight(i) < howmany && igt_hweight(j) < howmany) in run_modeset_tests()
/external/ltp/testcases/kernel/io/ltp-aiodio/
Daiocp.c491 tocopy = howmany(length, aio_blksize); in main()
502 howmany(length - offset, aio_blksize)); in main()
/external/openssh/
Ddefines.h421 # define howmany(x,y) (((x)+((y)-1))/(y)) macro
Dsftp-server.c1699 rset = xcalloc(howmany(max + 1, NFDBITS), sizeof(fd_mask)); in sftp_server_main()
1700 wset = xcalloc(howmany(max + 1, NFDBITS), sizeof(fd_mask)); in sftp_server_main()
1709 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask); in sftp_server_main()
Dpacket.c1333 setp = calloc(howmany(state->connection_in + 1, in ssh_packet_read_seqnr()
1358 memset(setp, 0, howmany(state->connection_in + 1, in ssh_packet_read_seqnr()
1999 setp = calloc(howmany(state->connection_out + 1, in ssh_packet_write_wait()
2008 memset(setp, 0, howmany(state->connection_out + 1, in ssh_packet_write_wait()
Dssh-keyscan.c790 read_wait_nfdset = howmany(maxfd, NFDBITS); in main()
Dsshd.c1139 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
Dchannels.c2504 nfdset = howmany(n+1, NFDBITS);
Dconfigure.ac2037 AC_CHECK_DECLS([howmany, NFDBITS], [], [], [[
/external/fsck_msdos/
Dfat.c1153 blobs = howmany(fat->fatsize, fat32_cache_size); in copyfat()