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

/osnet-11/usr/src/lib/libast/common/regex/
H A Dregcache.c33 #define ROUND 64 /* pattern buffer size round */ macro
171 cp->size = roundof(i, ROUND);
/osnet-11/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);
/osnet-11/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);
/osnet-11/usr/src/lib/libc/port/gen/
H A Dmallint.h64 #define ROUND(s) if (s % WORDSIZE) s += (WORDSIZE - (s % WORDSIZE)) macro
/osnet-11/usr/src/lib/watchmalloc/common/
H A Dmallint.h63 #define ROUND(s) if ((s)%WORDSIZE) (s) += (WORDSIZE - ((s)%WORDSIZE)) macro
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dserpent.c532 #define ROUND(which, subkeys, block, block_tmp) \ macro
720 ROUND (0, context->keys, b, b_next);
721 ROUND (1, context->keys, b, b_next);
722 ROUND (2, context->keys, b, b_next);
723 ROUND (3, context->keys, b, b_next);
724 ROUND (4, context->keys, b, b_next);
725 ROUND (5, context->keys, b, b_next);
726 ROUND (6, context->keys, b, b_next);
727 ROUND (7, context->keys, b, b_next);
728 ROUND (
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dserpent.c533 #define ROUND(which, subkeys, block, block_tmp) \ macro
721 ROUND (0, context->keys, b, b_next);
722 ROUND (1, context->keys, b, b_next);
723 ROUND (2, context->keys, b, b_next);
724 ROUND (3, context->keys, b, b_next);
725 ROUND (4, context->keys, b, b_next);
726 ROUND (5, context->keys, b, b_next);
727 ROUND (6, context->keys, b, b_next);
728 ROUND (7, context->keys, b, b_next);
729 ROUND (
[all...]
/osnet-11/usr/src/lib/libc/port/i18n/
H A Dgettext.h176 #define ROUND(m, s) if ((m) % (s)) (m) += ((s) - ((m) % (s))) macro
/osnet-11/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 44 milliseconds