Home
last modified time | relevance | path

Searched refs:howmany (Results 1 - 14 of 14) sorted by relevance

/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dparam.h27 #define howmany(n,d) (((n)+((d)-1))/(d)) macro
28 #define roundup(n,d) (howmany(n,d)*(d))
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dparam.h27 #define howmany(n,d) (((n)+((d)-1))/(d)) macro
28 #define roundup(n,d) (howmany(n,d)*(d))
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dparam.h30 #define howmany(n,d) (((n)+((d)-1))/(d)) macro
31 #define roundup(n,d) (howmany(n,d)*(d))
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dparam.h27 #define howmany(n,d) (((n)+((d)-1))/(d)) macro
28 #define roundup(n,d) (howmany(n,d)*(d))
/third_party/musl/include/sys/
H A Dparam.h27 #define howmany(n,d) (((n)+((d)-1))/(d)) macro
28 #define roundup(n,d) (howmany(n,d)*(d))
/third_party/FreeBSD/sbin/newfs_msdos/
H A Dmkfs_msdos.c451 howmany((RESFTE + (bpb.bpbSecPerClust ? MINCLS16 : MAXCLS12 + 1)) * in mkfs_msdos()
455 howmany(bpb.bpbRootDirEnts ? bpb.bpbRootDirEnts : DEFRDE, in mkfs_msdos()
459 howmany(DEFBLK, bpb.bpbBytesPerSec))) in mkfs_msdos()
463 howmany((RESFTE + MAXCLS16) * 2, bpb.bpbBytesPerSec) * in mkfs_msdos()
465 howmany(DEFRDE, bpb.bpbBytesPerSec / sizeof(struct de)) + in mkfs_msdos()
468 howmany(8192, bpb.bpbBytesPerSec))) in mkfs_msdos()
526 rds = howmany(bpb.bpbRootDirEnts, in mkfs_msdos()
529 for (bpb.bpbSecPerClust = howmany(fat == 16 ? DEFBLK16 : in mkfs_msdos()
532 howmany((RESFTE + maxcls(fat)) * (fat / BPN), in mkfs_msdos()
555 x2 = howmany((RESFT in mkfs_msdos()
[all...]
/third_party/ltp/testcases/kernel/io/ltp-aiodio/
H A Daiocp.c54 #ifndef howmany
55 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
303 reads = howmany(filesize, buffsize); in run()
/third_party/ffmpeg/libavcodec/arm/
H A Dmlpdsp_armv5te.S106 .macro inc howmany
107 .set LOAD_REG, (LOAD_REG + \howmany) & 3
108 .set OFFSET_CO, OFFSET_CO + 4 * \howmany
109 .set OFFSET_ST, OFFSET_ST + 4 * \howmany
111 .set FIR_REMAIN, FIR_REMAIN - \howmany
117 .set IIR_REMAIN, IIR_REMAIN - \howmany
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dtypes.h57 #define roundup(n,d) (howmany(n,d)*(d))
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
H A Dlibbitmask.c41 /* howmany(a,b) : how many elements of size b needed to hold all of a */
42 #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()
/third_party/lwip/src/apps/smtp/
H A Dsmtp.c1448 smtp_send_bodyh_data(struct altcp_pcb *pcb, const char **from, u16_t *howmany) in smtp_send_bodyh_data() argument
1451 u16_t len = *howmany; in smtp_send_bodyh_data()
1457 if ((*howmany -= len) > 0) { in smtp_send_bodyh_data()
/third_party/FreeBSD/sys/dev/random/
H A Dyarrow.c383 blockcount = howmany(bytecount, RANDOM_BLOCKSIZE); in random_yarrow_read()
/third_party/FreeBSD/sbin/fsck_msdosfs/
H A Dfat.c1151 blobs = howmany(fat->fatsize, fat32_cache_size); in copyfat()
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp15795 size_t howmany = scalar::utf8_to_utf16::convert<endian>(in + pos, size - pos, utf16_output);
15796 if(howmany == 0) { return 0; }
15797 utf16_output += howmany;
16147 size_t howmany = scalar::utf8_to_utf32::convert(in + pos, size - pos, utf32_output);
16148 if(howmany == 0) { return 0; }
16149 utf32_output += howmany;
16545 size_t howmany = scalar::utf8_to_latin1::convert(in + pos, size - pos, latin1_output);
16546 if(howmany == 0) { return 0; }
16547 latin1_output += howmany;
16719 size_t howmany
[all...]

Completed in 32 milliseconds