Home
last modified time | relevance | path

Searched refs:ROUND_UP (Results 1 – 11 of 11) sorted by relevance

/f-stack/freebsd/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_prs.c143 p_TmpCode = (uint32_t *)XX_MallocSmart(ROUND_UP(sizeof(swPrsPatch),4), 0, sizeof(uint32_t)); in PrsInit()
146 memset((uint8_t *)p_TmpCode, 0, ROUND_UP(sizeof(swPrsPatch),4)); in PrsInit()
377 p_TmpCode = (uint32_t *)XX_MallocSmart(ROUND_UP(p_SwPrs->size,4), 0, sizeof(uint32_t)); in FM_PCD_PrsLoadSw()
380 memset((uint8_t *)p_TmpCode, 0, ROUND_UP(p_SwPrs->size,4)); in FM_PCD_PrsLoadSw()
396 p_FmPcd->p_FmPcdPrs->p_SwPrsCode + p_SwPrs->base*2/4 + ROUND_UP(p_SwPrs->size,4); in FM_PCD_PrsLoadSw()
H A Dfm_manip.c2100 waySize = ROUND_UP(keySize, 8); in CreateReassTable()
/f-stack/freebsd/arm64/nvidia/tegra210/
H A Dtegra210_cpufreq.c172 #define ROUND_UP(val, div) roundup(val, div) macro
207 uv = ROUND_UP(uv, step_uvolt); in freq_to_voltage()
210 min_uvolt = ROUND_UP(sc->cpu_def->min_uvolt, step_uvolt); in freq_to_voltage()
/f-stack/freebsd/arm/nvidia/tegra124/
H A Dtegra124_cpufreq.c215 #define ROUND_UP(val, div) roundup(val, div) macro
249 uv = ROUND_UP(uv, step_uvolt); in freq_to_voltage()
252 min_uvolt = ROUND_UP(sc->cpu_def->min_uvolt, step_uvolt); in freq_to_voltage()
/f-stack/freebsd/contrib/ncsw/Peripherals/FM/Port/
H A Dfm_port.c5616 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5621 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5626 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5631 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5636 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5646 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5648 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5650 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5656 size = ROUND_UP(size,4); in FmPortConfigAutoResForDeepSleepSupport1()
5751 size = ROUND_UP(size,4); in AR_ComputeOffsets()
[all …]
/f-stack/freebsd/contrib/ncsw/inc/
H A Dncsw_ext.h148 #define ROUND_UP(x,y) ((((x) + (y) - 1) / (y)) * (y)) macro
/f-stack/dpdk/drivers/net/hinic/base/
H A Dhinic_compat.h76 #define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y)) macro
/f-stack/dpdk/drivers/net/ice/base/
H A Dice_type.h31 #define ROUND_UP(a, b) ((b) * DIVIDE_AND_ROUND_UP((a), (b))) macro
H A Dice_acl_ctrl.c324 width = ROUND_UP(params->width, (u16)ICE_AQC_ACL_KEY_WIDTH_BYTES); in ice_acl_create_tbl()
/f-stack/dpdk/drivers/net/txgbe/base/
H A Dtxgbe_regs.h35 #define ROUND_UP(x, y) (((x) + (y) - 1) / (y) * (y)) macro
/f-stack/dpdk/drivers/net/txgbe/
H A Dtxgbe_rxtx.c4236 buf_size = ROUND_UP(buf_size, 0x1 << 10); in txgbe_dev_rx_init()