Home
last modified time | relevance | path

Searched defs:ROUND (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libc/i386/crt/
H A D_rtld.c50 #define ROUND(x, a) (((int)(x) + ((int)(a) - 1)) & \ macro
/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
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregcache.c33 #define ROUND 64 /* pattern buffer size round */ macro
/illumos-gate/usr/src/common/crypto/blowfish/
H A Dblowfish_impl.c361 #define ROUND(left, right, i) \ macro
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmallint.h61 #define ROUND(s) if ((s)%WORDSIZE) (s) += (WORDSIZE - ((s)%WORDSIZE)) macro
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmallint.h62 #define ROUND(s) if (s % WORDSIZE) s += (WORDSIZE - (s % WORDSIZE)) macro
/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/contrib/ast/src/lib/libast/vmalloc/
H A Dvmhdr.h118 #define ROUND(x,y) (((y)&((y)-1)) ? ROUNDX((x),(y)) : ROUND2((x),(y)) ) macro