Home
last modified time | relevance | path

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

12

/illumos-gate/usr/src/common/crypto/blowfish/
H A Dblowfish_impl.c411 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()
420 ROUND(left, right, 9); in blowfish_encrypt_block()
[all …]
/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) - 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()
/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) - 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()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/vmalloc/
H A Dvmopen.c42 Vmuchar_t a[ROUND(sizeof(Vmdata_t),ALIGN)];
46 Vmuchar_t a[ROUND(sizeof(Vmalloc_t),ALIGN)];
50 Vmuchar_t a[ROUND(sizeof(Seg_t),ALIGN)];
106 size = ROUND(sizeof(Vminit_t),incr); /* get initial memory */
H A Dvmhdr.h118 #define ROUND(x,y) (((y)&((y)-1)) ? ROUNDX((x),(y)) : ROUND2((x),(y)) ) macro
251 #define HEADSIZE ROUND(sizeof(struct _head_s),ALIGN)
264 #define BODYSIZE ROUND(sizeof(struct _body_s),ALIGN)
287 #define TINYSIZE ROUND(sizeof(struct _tiny_s),ALIGN)
340 #define SEGBLOCK(s) ((Block_t*)(((Vmuchar_t*)(s)) + ROUND(sizeof(Seg_t),ALIGN)))
H A Dvmpool.c71 size = ROUND(size,ALIGN);
80 if((tp = (*_Vmextend)(vm,ROUND(size,vd->incr),NIL(Vmsearch_f))) )
139 size = ROUND(vd->pool,ALIGN);
H A Dvmlast.c52 size = size < ALIGN ? ALIGN : ROUND(size,ALIGN);
198 size = size < ALIGN ? ALIGN : ROUND(size,ALIGN);
201 { ds = size-s; ds = ROUND(ds,vd->incr);
376 size = size <= TINYSIZE ? TINYSIZE : ROUND(size,ALIGN);
H A Dvmmopen.c70 #define MMHEAD(file) ROUND(sizeof(Mmvm_t)+strlen(file), ALIGN)
174 size = ROUND(size, _Vmpagesize); in mminit()
498 size = ROUND(size, _Vmpagesize); in vmmaddress()
H A Dvmstat.c77 { s = ROUND(s,ALIGN);
H A Dvmdebug.c383 s = ROUND(size,ALIGN) + DB_EXTRA;
515 s = ROUND(size,ALIGN) + DB_EXTRA;
676 if((s = ROUND(size,ALIGN) + DB_EXTRA) < sizeof(Body_t))
H A Dvmprofile.c483 s = ROUND(size,ALIGN) + PF_EXTRA;
583 news = ROUND(size,ALIGN) + PF_EXTRA;
676 s = (size <= TINYSIZE ? TINYSIZE : ROUND(size,ALIGN)) + PF_EXTRA;
H A Dvmbest.c635 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
874 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
906 s = (size - SIZE(rp)) + sizeof(Head_t); s = ROUND(s,vd->incr);
1025 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
1246 { nsize = ROUND(nsize, _Vmpagesize); in mmapmem()
H A Dvmprivate.c63 if((size = ROUND(s,vd->incr)) < s)
H A Dmalloc.c459 Regdisc.disc.round = ROUND(_Vmpagesize, 64*1024); in getregion()
694 return VMRECORD(memalign(_Vmpagesize, ROUND(size,_Vmpagesize)) );
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmemalign.c102 ROUND(nbytes); in memalign()
105 ROUND(align); in memalign()
H A Dmallint.h62 #define ROUND(s) if (s % WORDSIZE) s += (WORDSIZE - (s % WORDSIZE)) macro
H A Dmalloc.c193 ROUND(size); in _malloc_unlocked()
332 ROUND(size); in realloc()
/illumos-gate/usr/src/common/mapfiles/common/
H A Dmap.pagealign34 LOAD_SEGMENT data { ROUND = 0x2000 };
38 LOAD_SEGMENT data { ROUND = 0x1000 };
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregcache.c33 #define ROUND 64 /* pattern buffer size round */ macro
171 cp->size = roundof(i, ROUND); in regcache()
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmallint.h61 #define ROUND(s) if ((s)%WORDSIZE) (s) += (WORDSIZE - ((s)%WORDSIZE)) macro
H A Dmalloc.c186 ROUND(size); in malloc_unlocked()
308 ROUND(size); in realloc()
1152 ROUND(nbytes); in memalign()
1155 ROUND(align); in memalign()
/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/lib/libumem/common/
H A Dmapfile-vers46 ROUND = 0x1000;
/illumos-gate/usr/src/cmd/sgs/rtld/i386/
H A D_setup.c234 dyn_plt_ent_size = ROUND(dyn_plt_ent_size, M_WORD_ALIGN) + in _setup()
/illumos-gate/usr/src/cmd/sgs/rtld/amd64/
H A D_setup.c303 dyn_plt_ent_size = ROUND(dyn_plt_ent_size, M_WORD_ALIGN) + in _setup()

12