Searched defs:ROUND (Results 1 - 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregcache.c33 #define ROUND 64 /* pattern buffer size round */ macro
171 cp->size = roundof(i, ROUND);
/illumos-gate/usr/src/lib/libc/i386/crt/
H A D_rtld.c50 #define ROUND(x, a) (((int)(x) + ((int)(a) - 1)) & \ macro
195 mlen = ROUND((lph->p_vaddr + lph->p_memsz) -
201 faddr = (caddr_t)ROUND(maddr, fph->p_align);
208 mlen = ROUND((lph->p_vaddr + lph->p_memsz) -
215 faddr = (caddr_t)ROUND(maddr, fph->p_align);
285 zaddr = (caddr_t)ROUND(foff, page_size);
305 maddr = addr + ROUND(flen, page_size);
/illumos-gate/usr/src/lib/libc/sparc/crt/
H A D_rtld.c51 #define ROUND(x, a) (((uintptr_t)(x) + ((a) - 1)) & ~((a) - 1)) macro
195 mlen = ROUND((lph->p_vaddr + lph->p_memsz) -
201 faddr = (caddr_t)ROUND(maddr, fph->p_align);
208 mlen = ROUND((lph->p_vaddr + lph->p_memsz) -
215 faddr = (caddr_t)ROUND(maddr, fph->p_align);
286 zaddr = (caddr_t)ROUND(foff, page_size);
306 maddr = addr + ROUND(flen, page_size);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmallint.h64 #define ROUND(s) if (s % WORDSIZE) s += (WORDSIZE - (s % WORDSIZE)) macro
/illumos-gate/usr/src/common/crypto/blowfish/
H A Dblowfish_impl.c344 * Since ROUND() is a macro, make sure that the things inside can be
361 #define ROUND(left, right, i) \ macro
411 ROUND(left, right, 0);
412 ROUND(left, right, 1);
413 ROUND(left, right, 2);
414 ROUND(left, right, 3);
415 ROUND(left, right, 4);
416 ROUND(left, right, 5);
417 ROUND(left, right, 6);
418 ROUND(lef
[all...]
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmallint.h63 #define ROUND(s) if ((s)%WORDSIZE) (s) += (WORDSIZE - ((s)%WORDSIZE)) macro
/illumos-gate/usr/src/cmd/sgs/rtld.4.x/
H A Drtld.4.x.c49 #define ROUND(x, a) (((int)(x) + ((int)(a) - 1)) & \ macro
441 mlen = ROUND((lph->p_vaddr + lph->p_memsz) -
447 faddr = (caddr_t)ROUND(maddr, fph->p_align);
454 mlen = ROUND((lph->p_vaddr + lph->p_memsz) -
461 faddr = (caddr_t)ROUND(maddr, fph->p_align);
522 zaddr = (caddr_t)ROUND(foff, page_size);
537 maddr = addr + ROUND(flen, page_size);
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dgettext.h177 #define ROUND(m, s) if ((m) % (s)) (m) += ((s) - ((m) % (s))) macro
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A D_rtld.h358 #define ROUND(x, a) (((int)(x) + ((int)(a) - 1)) & ~((int)(a) - 1)) macro
/illumos-gate/usr/src/lib/libast/common/vmalloc/
H A Dvmhdr.h128 #define ROUND(x,y) (((y)&((y)-1)) ? ROUNDX((x),(y)) : ROUND2((x),(y)) ) macro
288 #define HEADSIZE ROUND(sizeof(struct _head_s),ALIGN)
301 #define BODYSIZE ROUND(sizeof(struct _body_s),ALIGN)
322 #define TINYSIZE ROUND(sizeof(struct _tiny_s),ALIGN)
375 #define SEGBLOCK(s) ((Block_t*)(((Vmuchar_t*)(s)) + ROUND(sizeof(Seg_t),ALIGN)))

Completed in 102 milliseconds