Searched refs:ROUNDUP (Results 1 - 25 of 25) sorted by relevance

/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/
H A Difiter_sysctl.c35 #define ROUNDUP(a) ((a) > 0 ? \ macro
39 #define ROUNDUP(a) ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) \ macro
222 + ROUNDUP(sa->sa_len));
229 + ROUNDUP(_FAKE_SA_LEN_DST(sa)));
233 + ROUNDUP(sizeof(struct sockaddr)));
/macosx-10.10.1/ntp-92/lib/isc/unix/
H A Difiter_sysctl.c35 #define ROUNDUP(a) ((a) > 0 ? \ macro
39 #define ROUNDUP(a) ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) \ macro
230 + ROUNDUP(sa->sa_len));
237 + ROUNDUP(_FAKE_SA_LEN_DST(sa)));
241 + ROUNDUP(sizeof(struct sockaddr)));
/macosx-10.10.1/network_cmds-457/rtsol.tproj/
H A Drtsock.c58 #define ROUNDUP(a, size) \ macro
63 ((ap)->sa_len ? ROUNDUP((ap)->sa_len, sizeof(uint32_t)) \
H A Dif.c240 #define ROUNDUP(a, size) \ macro
244 ((caddr_t)(ap) + ((ap)->sa_len ? ROUNDUP((ap)->sa_len,\
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtc.alloc.c104 #define MEMALIGN(a) (((a) + ROUNDUP) & ~ROUNDUP)
131 #define ROUNDUP 7 macro
280 if (((U_long) op) & ROUNDUP) {
281 op = (union overhead *) (((U_long) op + (ROUNDUP + 1)) & ~ROUNDUP);
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dzalloc.h206 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y)) macro
207 #define ZONE_DEBUG_OFFSET ROUNDUP(sizeof(queue_chain_t),16)
/macosx-10.10.1/emacs-93/emacs/src/
H A Dralloc.c112 #define ROUNDUP(size) (((unsigned long int) (size) + page_size - 1) \
315 get = (char *) ROUNDUP ((char *)last_heap->end + get)
368 - (char *) ROUNDUP ((char *)last_heap->end - excess);
831 SIZE get = ROUNDUP (size);
833 address = (POINTER) ROUNDUP (virtual_break_value);
841 address = (POINTER) ROUNDUP (h->start);
853 address = (POINTER) ROUNDUP (virtual_break_value);
855 address = (POINTER) ROUNDUP (last_heap->start);
1167 assert ((POINTER) ROUNDUP (h->end) == h->end);
1266 extra_bytes = ROUNDUP (5000
111 #define ROUNDUP macro
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dgmon.h195 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y)) macro
/macosx-10.10.1/configd-699.1.5/dnsinfo/
H A Ddnsinfo_create.c41 #define ROUNDUP(a, size) \ macro
91 rounded_length = ROUNDUP(attribute_length, sizeof(uint32_t));
265 rounded_length = ROUNDUP(attribute_length, sizeof(uint32_t));
/macosx-10.10.1/xnu-2782.1.97/osfmk/profiling/
H A Dprofile-internal.h185 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y)) macro
H A Dprofile-mk.c108 highpc = ROUNDUP((prof_uptrint_t)&etext[0], HISTFRACTION*sizeof(LHISTCOUNTER));
/macosx-10.10.1/bootp-298/bootplib/
H A Dutil.c413 #define ROUNDUP(a) \ macro
432 cp += ROUNDUP(sa->sa_len);
/macosx-10.10.1/network_cmds-457/netstat.tproj/
H A Droute.c88 #define ROUNDUP(a) \ macro
90 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
253 sa = (struct sockaddr *)(ROUNDUP(sa->sa_len) + (char *)sa);
H A Dif.c97 #define ROUNDUP(a, size) (((a) & ((size) - 1)) ? (1 + ((a)|(size - 1))) : (a)) macro
100 ((caddr_t)p + (p->sa_len ? ROUNDUP(p->sa_len, sizeof(uint32_t)) : \
/macosx-10.10.1/network_cmds-457/ndp.tproj/
H A Dndp.c140 #define ROUNDUP(a) \ macro
143 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
436 sdl = (struct sockaddr_dl *)(ROUNDUP(sin->sin6_len) + (char *)sin);
533 sdl = (struct sockaddr_dl *)(ROUNDUP(sin->sin6_len) + (char *)sin);
626 ROUNDUP(sin->sin6_len));
824 ROUNDUP(sin->sin6_len));
/macosx-10.10.1/network_cmds-457/rtadvd.tproj/
H A Dif.c52 #define ROUNDUP(a, size) \ macro
56 ((caddr_t)(ap) + ((ap)->sa_len ? ROUNDUP((ap)->sa_len,\
/macosx-10.10.1/network_cmds-457/route.tproj/
H A Droute.c144 #define ROUNDUP(a) \ macro
146 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
302 sa = (struct sockaddr *)(ROUNDUP(sa->sa_len) + (char *)sa);
1174 l = ROUNDUP(u.sa.sa_len); bcopy((char *)&(u), cp, l); cp += l;\
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dsubr_prof.c122 p->highpc = ROUNDUP(p->highpc, HISTFRACTION * sizeof(HISTCOUNTER));
/macosx-10.10.1/hfs-285/newfs_hfs/
H A Dnewfs_hfs.c73 #define ROUNDUP(x,y) (((x)+(y)-1)/(y)*(y)) macro
1089 defaults->rsrcClumpSize = ROUNDUP(kHFSPlusRsrcClumpFactor * DFL_BLKSIZE, gBlockSize);
1097 defaults->dataClumpSize = ROUNDUP(kHFSPlusRsrcClumpFactor * DFL_BLKSIZE, gBlockSize);
H A Dmakehfs.c166 #define ROUNDUP(x, u) (((x) % (u) == 0) ? (x) : ((x)/(u) + 1) * (u)) macro
255 firstAdjust = ROUNDUP(firstAdjust, minBlocks);
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A DdecNumberLocal.h106 /* ROUNDUP -- round an integer up to a multiple of n */
107 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro
330 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
/macosx-10.10.1/network_cmds-457/natd.tproj/
H A Dnatd.c1399 #define ROUNDUP(a) \ macro
1401 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A DSCNetworkReachability.c762 #define ROUNDUP(a, size) \ macro
766 ((caddr_t)(ap) + ((ap)->sa_len ? ROUNDUP((ap)->sa_len,\
860 n = ROUNDUP(sa->sa_len, sizeof(uint32_t));
866 n = ROUNDUP(info->sdl->sdl_len, sizeof(uint32_t));
/macosx-10.10.1/ppp-786.1.1/Helpers/vpnd/
H A Dipsec_utils.c2318 #define ROUNDUP(a, size) \ macro
2322 ((caddr_t)(ap) + ((ap)->sa_len ? ROUNDUP((ap)->sa_len,\
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Ddlil.c5255 #define ROUNDUP(a) (1 + (((a) - 1) | (sizeof (u_int32_t) - 1))) macro
5258 socksize = ROUNDUP(socksize);
5259 #undef ROUNDUP macro

Completed in 7465 milliseconds