Home
last modified time | relevance | path

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

/freebsd-11-stable/usr.sbin/ndiscvt/
HDndiscvt.c86 #define ROUND_UP(n, align) ROUND_DOWN(((uintptr_t)n) + (align) - 1l, \ macro
124 offaccum += ROUND_UP(sect_hdr->ish_vaddr - oldraddr, in insert_padding()
127 ROUND_UP(sect_hdr->ish_misc.ish_vsize, in insert_padding()
129 ROUND_UP(sect_hdr->ish_rawdatasize, in insert_padding()
140 ROUND_UP(sect_hdr->ish_misc.ish_vsize, in insert_padding()
/freebsd-11-stable/contrib/binutils/ld/
HDdeffilep.y32 #define ROUND_UP(a, b) (((a)+((b)-1))&~((b)-1)) macro
477 int max_exports = ROUND_UP(def->num_exports, 32); in def_file_add_export()
481 max_exports = ROUND_UP(def->num_exports + 1, 32); in def_file_add_export()
536 int max_imports = ROUND_UP (def->num_imports, 16); in def_file_add_import()
540 max_imports = ROUND_UP (def->num_imports+1, 16); in def_file_add_import()
714 int max_sections = ROUND_UP (def->num_section_defs, 4); in def_section()
718 max_sections = ROUND_UP (def->num_section_defs+1, 4); in def_section()
/freebsd-11-stable/sys/arm/nvidia/tegra124/
HDtegra124_cpufreq.c216 #define ROUND_UP(val, div) roundup(val, div) macro
251 uv = ROUND_UP(uv, step_uvolt); in freq_to_voltage()
254 min_uvolt = ROUND_UP(sc->cpu_def->min_uvolt, step_uvolt); in freq_to_voltage()
/freebsd-11-stable/tools/test/testfloat/
HDtestFunction.h130 ROUND_UP, enumerator
HDtestsoftfloat.c317 ROUND_UP, enumerator
371 case ROUND_UP: in testFunctionVariety()
948 roundingMode = ROUND_UP; in main()
HDtestfloat.c200 roundingMode = ROUND_UP; in main()
HDtestFunction.c612 case ROUND_UP: in testFunctionVariety()
/freebsd-11-stable/contrib/gcc/
HDggc-page.c234 #define ROUND_UP(x, f) (CEIL (x, f) * (f)) macro
1515 s = ROUND_UP (s, MAX_ALIGNMENT); in init_ggc()
2071 a += ROUND_UP (d->d.totals[i] * OBJECT_SIZE (i), G.pagesize); in ggc_pch_total_size()
2084 a += ROUND_UP (d->d.totals[i] * OBJECT_SIZE (i), G.pagesize); in ggc_pch_this_base()
2274 bytes = ROUND_UP (d.totals[i] * OBJECT_SIZE (i), G.pagesize); in ggc_pch_read()
HDggc-zone.c225 #define ROUND_UP(x, f) (CEIL (x, f) * (f)) macro
2208 d->d.type_totals[i] = ROUND_UP (d->d.type_totals[i], GGC_PAGE_SIZE); in ggc_pch_total_size()
2215 alloc_size = ROUND_UP (alloc_size, MAX_ALIGNMENT); in ggc_pch_total_size()
2328 alloc_size = ROUND_UP (alloc_size, MAX_ALIGNMENT); in ggc_pch_read()
HDChangeLog-200335785 * arm.c (ROUND_UP_WORD): Renamed from ROUND_UP.
36409 (ROUND_UP): New.
36411 (init_ggc): Use ROUND_UP.
/freebsd-11-stable/sys/contrib/ncsw/inc/
HDncsw_ext.h143 #define ROUND_UP(x,y) ((((x) + (y) - 1) / (y)) * (y)) macro
/freebsd-11-stable/contrib/ofed/libcxgb4/
HDqp.c122 len = ROUND_UP(plen + 8, 16) - (plen + 8); in build_immd()
HDt4.h54 #define ROUND_UP(x, n) (((x) + (n) - 1u) & ~((n) - 1u)) macro
/freebsd-11-stable/lib/libc/softfloat/
HDtimesoftfloat.c2040 ROUND_UP, enumerator
2093 case ROUND_UP: in timeFunctionVariety()
2564 roundingMode = ROUND_UP; in main()
/freebsd-11-stable/sys/contrib/ncsw/Peripherals/FM/Pcd/
HDfm_manip.c803 waySize = ROUND_UP(((16 + 16 + 4 + 2) /* * numOfWays*/),8); in CreateIpReassParamTable()
/freebsd-11-stable/contrib/expat/lib/
HDxmlparse.c166 #define ROUND_UP(n, sz) (((n) + ((sz)-1)) & ~((sz)-1)) macro
2414 bufSize = nameLen + ROUND_UP(tag->rawNameLength, sizeof(XML_Char)); in storeRawNames()