Home
last modified time | relevance | path

Searched refs:ROUNDUP (Results 1 – 18 of 18) sorted by relevance

/dragonfly/contrib/tcsh-6/
H A Dtc.alloc.c107 #define MEMALIGN(a) (((a) + ROUNDUP) & ~ROUNDUP)
135 #define ROUNDUP 15 macro
137 #define ROUNDUP 7 macro
287 if (((U_long) op) & ROUNDUP) { in morecore()
288 op = (union overhead *) (((U_long) op + (ROUNDUP + 1)) & ~ROUNDUP); in morecore()
/dragonfly/sbin/gpt/
H A Dmap.c38 #define ROUNDUP(x) (ROUNDDOWN(x) + ROUNDTO) macro
148 size = ROUNDUP(size); in map_alloc()
154 delta = (start != 0) ? start - m->map_start : ROUNDUP(m->map_start) - m->map_start; in map_alloc()
/dragonfly/contrib/binutils-2.34/gprof/
H A Dgmon.h155 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y)) macro
/dragonfly/contrib/binutils-2.27/gprof/
H A Dgmon.h155 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y)) macro
/dragonfly/contrib/gcc-4.7/libgcc/config/
H A Dgmon-sol2.c78 #define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y)) macro
109 highpc = (char *) ROUNDUP ((size_t) highpc, in monstartup()
/dragonfly/sys/sys/
H A Dgmon.h145 #define ROUNDUP(x,y) roundup(x,y) macro
/dragonfly/crypto/openssh/
H A Dsshbuf.c241 rlen = ROUNDUP(buf->size, SSHBUF_SIZE_INC); in sshbuf_set_max_size()
329 rlen = ROUNDUP(buf->alloc + need, SSHBUF_SIZE_INC); in sshbuf_allocate()
H A Dmisc.h229 #define ROUNDUP(x, y) ((((x)+((y)-1))/(y))*(y)) macro
H A Dpacket.c997 out_blocks = ROUNDUP(outbound_packet_len, in ssh_packet_need_rekeying()
1134 ROUNDUP(state->extra_pad, block_size); in ssh_packet_send2_wrapped()
H A Dkex.c1051 if ((digest = calloc(1, ROUNDUP(need, mdsz))) == NULL) { in derive_key()
H A Dscp.c2133 size = ROUNDUP(stb.st_blksize, blksize);
/dragonfly/contrib/bmake/
H A Dmeta.c98 #ifndef ROUNDUP
99 # define ROUNDUP(n, u) (N2U((n), (u)) * (u)) macro
913 newsz = ROUNDUP(((size_t)fs.st_size / 2), BUFSIZ); in fgetLine()
915 newsz = ROUNDUP((size_t)fs.st_size, BUFSIZ); in fgetLine()
/dragonfly/usr.sbin/rtadvd/
H A Dif.c60 #define ROUNDUP(a, size) \ macro
65 ((ap)->sa_len ? ROUNDUP((ap)->sa_len, sizeof(u_long)) : \
/dragonfly/lib/libc/gmon/
H A Dgmon.c74 p->highpc = ROUNDUP(highpc, HISTFRACTION * sizeof(HISTCOUNTER)); in monstartup()
/dragonfly/contrib/gcc-4.7/libdecnumber/
H A DdecNumberLocal.h138 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro
362 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
/dragonfly/contrib/gdb-7/libdecnumber/
H A DdecNumberLocal.h138 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro
362 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
/dragonfly/contrib/gcc-8.0/libdecnumber/
H A DdecNumberLocal.h138 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro
361 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
/dragonfly/sbin/routed/
H A Dif.c623 #define ROUNDUP(a) RT_ROUNDUP(a) in rt_xaddrs() macro
633 + ROUNDUP(sa->sa_len)); in rt_xaddrs()