/src/distrib/common/ |
buildfloppies.sh | 64 roundup() function 129 blocks=$(roundup ${bytes} 512) 133 numdisks=$(roundup ${blocks}-16 ${floppysize}-16) 150 pad_bytes=$(($(roundup $file_bytes 512) * 512 - $file_bytes))
|
/src/sys/arch/landisk/stand/boot/ |
boot.h | 14 #ifndef roundup 15 #define roundup(v,s) ((v + ((s) - 1)) & (~((s) - 1))) macro
|
/src/sys/arch/hppa/spmath/ |
sfrem.c | 59 register int roundup = false; local in function:sgl_frem 233 roundup = true; 254 else if (Sgl_isequal(opnd1,opnd2) && roundup) {
|
dfrem.c | 60 register int roundup = false; local in function:dbl_frem 238 roundup = true; 260 else if (Dbl_isequal(opnd1p1,opnd1p2,opnd2p1,opnd2p2) && roundup) {
|
/src/usr.sbin/installboot/ |
cd9660.c | 61 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro 220 roundup(isonum_733(idr->size), blocksize);
|
/src/sys/arch/macppc/stand/installboot/ |
installboot.c | 44 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
|
/src/lib/libc/gdtoa/ |
hdtoa.c | 75 roundup(char *s0, int ndigits) function in typeref:typename:int 108 adjust = roundup(s0, ndigits); 112 adjust = roundup(s0, ndigits); 116 adjust = roundup(s0, ndigits);
|
/src/sys/arch/zaurus/stand/zbsdmod/ |
zbsdmod.c | 171 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro 172 elfv = maxv = roundup(maxv, sizeof(long)); 178 maxv += roundup(sz, sizeof(long)); 186 off = roundup((sizeof(Elf_Ehdr) + sz), sizeof(long)); 202 maxv += roundup(shp[i].sh_size, sizeof(long)); 204 off += roundup(shp[i].sh_size, sizeof(long));
|
/src/lib/libc/locale/ |
rune.c | 77 #define roundup(X, N) ((((X) + ((N) - 1))/(N))*(N)) macro 89 nbytes = page_size + roundup(elemsize*nelem, page_size); 116 nbytes = page_size + roundup(elemsize*nelem, page_size);
|
/src/sys/sys/ |
param.h | 433 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
|
/src/sys/dev/sdmmc/ |
sdhc.c | 1037 u_int roundup = dvs & 1; local in function:sdhc_clock_divisor 1039 if (dvs + roundup <= 16) { 1040 dvs += roundup - 1; 1052 roundup |= dvs & 1;
|
/src/tools/compat/ |
compat_defs.h | 1294 #undef roundup 1295 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
|
/src/sys/external/isc/atheros_hal/dist/ |
ah_internal.h | 34 #ifndef roundup 35 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ macro
|