| /f-stack/freebsd/kern/ |
| H A D | subr_module.c | 76 next = roundup(next, sizeof(u_long)); in preload_search_by_name() 112 next = roundup(next, sizeof(u_long)); in preload_search_by_type() 136 next = roundup(next, sizeof(u_long)); in preload_search_next_name() 152 next = roundup(next, sizeof(u_long)); in preload_search_next_name() 201 next = roundup(next, sizeof(u_long)); in preload_search_info() 251 next = roundup(next, sizeof(u_long)); in preload_delete_name() 309 next = roundup(next, sizeof(u_long)); in preload_bootstrap_relocate() 529 bptr += roundup(len, sizeof(u_long)) / sizeof(uint32_t); in preload_dump_internal()
|
| H A D | imgact_aout.c | 214 bss_size = roundup(a_out->a_bss, PAGE_SIZE); in exec_aout_imgact()
|
| /f-stack/tools/compat/ |
| H A D | compat.h | 52 #ifndef roundup 53 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ macro
|
| /f-stack/freebsd/arm64/arm64/ |
| H A D | machdep_boot.c | 78 size = roundup(size, sizeof(u_long)); \ 110 lastaddr = roundup(lastaddr, sizeof(int)); in fake_preload_metadata() 116 lastaddr = roundup(lastaddr, sizeof(int)); in fake_preload_metadata()
|
| /f-stack/tools/netstat/ |
| H A D | common.c | 117 size = roundup(ifindex + 1, 32) * in prepare_ifmap() 125 ifmap_size = roundup(ifindex + 1, 32); in prepare_ifmap()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | machdep.c | 407 size = roundup(size, sizeof(u_long)); in mips_postboot_fixup() 413 size = roundup(size, sizeof(u_long)); in mips_postboot_fixup() 418 size = roundup(size, sizeof(u_long)); in mips_postboot_fixup() 423 size = roundup(size, sizeof(u_long)); in mips_postboot_fixup()
|
| /f-stack/freebsd/ddb/ |
| H A D | db_capture.c | 108 db_capture_maxbufsize = roundup(db_capture_maxbufsize, in db_capture_sysinit() 110 db_capture_bufsize = roundup(db_capture_bufsize, TEXTDUMP_BLOCKSIZE); in db_capture_sysinit() 134 size = roundup(size, TEXTDUMP_BLOCKSIZE); in sysctl_debug_ddb_capture_bufsize()
|
| H A D | db_expr.c | 196 lhs = roundup(lhs, rhs); in db_mult_expr()
|
| /f-stack/freebsd/i386/cloudabi32/ |
| H A D | cloudabi32_sysvec.c | 73 roundup(sizeof(cloudabi32_tcb_t), sizeof(register_t)); in cloudabi32_fixup_tcb() 74 *stack_base -= roundup(sizeof(args), sizeof(register_t)); in cloudabi32_fixup_tcb()
|
| /f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/ |
| H A D | ar9300_beacon.c | 138 HALASSERT(roundup(bs->bs_sleepduration, beaconintval) == in ar9300_set_sta_beacon_timers() 145 roundup(bs->bs_sleepduration, dtimperiod) == in ar9300_set_sta_beacon_timers()
|
| /f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | sysmacros.h | 143 #ifndef roundup 144 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
|
| /f-stack/dpdk/drivers/bus/dpaa/base/qbman/ |
| H A D | bman_driver.c | 237 static u32 __generate_thresh(u32 val, int roundup) in __generate_thresh() argument 246 if (roundup && oddbit) in __generate_thresh()
|
| /f-stack/freebsd/sys/ |
| H A D | gmon.h | 152 #define ROUNDUP(x,y) roundup(x,y)
|
| H A D | param.h | 309 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ macro
|
| H A D | module.h | 140 #define MODULE_KERNEL_MAXVER (roundup(__FreeBSD_version, 100000) - 1)
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-xdr.c | 176 uint_t size = roundup(cnt, 4); in xdrmem_enc_bytes() 205 uint_t size = roundup(cnt, 4); in xdrmem_dec_bytes()
|
| /f-stack/freebsd/arm/arm/ |
| H A D | machdep_boot.c | 375 lastaddr = roundup(lastaddr, sizeof(int)); in fake_preload_metadata() 381 lastaddr = roundup(lastaddr, sizeof(int)); in fake_preload_metadata()
|
| /f-stack/freebsd/arm64/cloudabi64/ |
| H A D | cloudabi64_sysvec.c | 65 stack + roundup(sizeof(cloudabi64_tcb_t), sizeof(register_t)); in cloudabi64_proc_setregs()
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zpl_export.c | 62 *max_len = roundup(len_bytes, sizeof (__u32)) / sizeof (__u32);
|
| /f-stack/freebsd/arm64/cloudabi32/ |
| H A D | cloudabi32_sysvec.c | 59 stack + roundup(sizeof(cloudabi32_tcb_t), sizeof(register_t)); in cloudabi32_proc_setregs()
|
| /f-stack/freebsd/arm/cloudabi32/ |
| H A D | cloudabi32_sysvec.c | 65 stack + roundup(sizeof(cloudabi32_tcb_t), sizeof(register_t)); in cloudabi32_proc_setregs()
|
| /f-stack/freebsd/amd64/cloudabi32/ |
| H A D | cloudabi32_sysvec.c | 78 roundup(sizeof(cloudabi32_tcb_t), sizeof(register_t)); in cloudabi32_fixup_tcb()
|
| /f-stack/freebsd/amd64/cloudabi64/ |
| H A D | cloudabi64_sysvec.c | 86 roundup(sizeof(cloudabi64_tcb_t), sizeof(register_t)); in cloudabi64_proc_setregs()
|
| /f-stack/freebsd/contrib/ncsw/Peripherals/QM/ |
| H A D | qm.h | 616 static __inline__ uint32_t GenerateCgrThresh(uint64_t val, int roundup) in GenerateCgrThresh() argument 624 if(roundup && oddbit) in GenerateCgrThresh()
|
| /f-stack/dpdk/drivers/bus/dpaa/include/ |
| H A D | fsl_qman.h | 561 int roundup) in qm_fqd_taildrop_set() argument 572 if (roundup && oddbit) in qm_fqd_taildrop_set() 710 int roundup) in qm_cgr_cs_thres_set64() argument 719 if (roundup && oddbit) in qm_cgr_cs_thres_set64()
|