Home
last modified time | relevance | path

Searched refs:ROUND (Results 1 – 25 of 31) sorted by relevance

12

/titanic_41/usr/src/common/crypto/blowfish/
H A Dblowfish_impl.c361 #define ROUND(left, right, i) \ macro
411 ROUND(left, right, 0); in blowfish_encrypt_block()
412 ROUND(left, right, 1); in blowfish_encrypt_block()
413 ROUND(left, right, 2); in blowfish_encrypt_block()
414 ROUND(left, right, 3); in blowfish_encrypt_block()
415 ROUND(left, right, 4); in blowfish_encrypt_block()
416 ROUND(left, right, 5); in blowfish_encrypt_block()
417 ROUND(left, right, 6); in blowfish_encrypt_block()
418 ROUND(left, right, 7); in blowfish_encrypt_block()
419 ROUND(left, right, 8); in blowfish_encrypt_block()
[all …]
/titanic_41/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) - in __rtld()
201 faddr = (caddr_t)ROUND(maddr, fph->p_align); in __rtld()
208 mlen = ROUND((lph->p_vaddr + lph->p_memsz) - in __rtld()
215 faddr = (caddr_t)ROUND(maddr, fph->p_align); in __rtld()
285 zaddr = (caddr_t)ROUND(foff, page_size); in __rtld()
305 maddr = addr + ROUND(flen, page_size); in __rtld()
/titanic_41/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) - in __rtld()
201 faddr = (caddr_t)ROUND(maddr, fph->p_align); in __rtld()
208 mlen = ROUND((lph->p_vaddr + lph->p_memsz) - in __rtld()
215 faddr = (caddr_t)ROUND(maddr, fph->p_align); in __rtld()
286 zaddr = (caddr_t)ROUND(foff, page_size); in __rtld()
306 maddr = addr + ROUND(flen, page_size); in __rtld()
/titanic_41/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);
/titanic_41/usr/src/lib/libc/port/gen/
H A Dmemalign.c103 ROUND(nbytes); in memalign()
106 ROUND(align); in memalign()
H A Dmallint.h64 #define ROUND(s) if (s % WORDSIZE) s += (WORDSIZE - (s % WORDSIZE)) macro
H A Dmalloc.c195 ROUND(size); in _malloc_unlocked()
334 ROUND(size); in realloc()
/titanic_41/usr/src/common/mapfiles/common/
H A Dmap.pagealign34 LOAD_SEGMENT data { ROUND = 0x2000 };
38 LOAD_SEGMENT data { ROUND = 0x1000 };
/titanic_41/usr/src/lib/libast/common/regex/
H A Dregcache.c33 #define ROUND 64 /* pattern buffer size round */ macro
171 cp->size = roundof(i, ROUND); in regcache()
/titanic_41/usr/src/lib/libast/common/vmalloc/
H A Dvmmopen.c59 #define MM_START ROUND(sizeof(Mmvm_t),ALIGN)
185 csize = ROUND(csize, disc->round);
265 round = ROUND(round, _Vmpagesize);
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)))
H A Dvmopen.c108 s = ROUND(sizeof(Vminit_t),incr);
138 vd->seg = (Seg_t*)(addr + ROUND(incr,ALIGN));
H A Dvmpool.c78 size = ROUND(size,ALIGN);
88 { if((tp = (*_Vmextend)(vm,ROUND(size,vd->incr),NIL(Vmsearch_f))) )
159 size = ROUND(vd->pool,ALIGN);
H A Dvmlast.c61 size = size < ALIGN ? ALIGN : ROUND(size,ALIGN);
236 size = size < ALIGN ? ALIGN : ROUND(size,ALIGN);
239 { ds = size-s; ds = ROUND(ds,vd->incr);
422 size = size <= TINYSIZE ? TINYSIZE : ROUND(size,ALIGN);
H A Dvmstat.c70 { s = ROUND(s,ALIGN);
H A Dvmdebug.c403 s = ROUND(size,ALIGN) + DB_EXTRA;
558 s = ROUND(size,ALIGN) + DB_EXTRA;
726 if((s = ROUND(size,ALIGN) + DB_EXTRA) < sizeof(Body_t))
H A Dvmprofile.c489 s = ROUND(size,ALIGN) + PF_EXTRA;
619 news = ROUND(size,ALIGN) + PF_EXTRA;
718 s = (size <= TINYSIZE ? TINYSIZE : ROUND(size,ALIGN)) + PF_EXTRA;
H A Dvmbest.c690 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
948 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
971 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
1002 s = (size - SIZE(rp)) + sizeof(Head_t); s = ROUND(s,vd->incr);
1143 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
H A Dvmprivate.c69 if((size = ROUND(s,vd->incr)) < s)
/titanic_41/usr/src/lib/watchmalloc/common/
H A Dmallint.h63 #define ROUND(s) if ((s)%WORDSIZE) (s) += (WORDSIZE - ((s)%WORDSIZE)) macro
H A Dmalloc.c188 ROUND(size); in malloc_unlocked()
310 ROUND(size); in realloc()
1154 ROUND(nbytes); in memalign()
1157 ROUND(align); in memalign()
/titanic_41/usr/src/lib/libc/port/i18n/
H A Dgettext.h179 #define ROUND(m, s) if ((m) % (s)) (m) += ((s) - ((m) % (s))) macro
/titanic_41/usr/src/cmd/sgs/rtld/i386/
H A D_setup.c229 dyn_plt_ent_size = ROUND(dyn_plt_ent_size, M_WORD_ALIGN) + in _setup()
/titanic_41/usr/src/cmd/sgs/rtld/amd64/
H A D_setup.c229 dyn_plt_ent_size = ROUND(dyn_plt_ent_size, M_WORD_ALIGN) + in _setup()
/titanic_41/usr/src/cmd/sgs/rtld/common/
H A D_rtld.h358 #define ROUND(x, a) (((int)(x) + ((int)(a) - 1)) & ~((int)(a) - 1)) macro

12