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

12

/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/dbs/
H A Dtiff-rgb.c34 #define ROUND(x) (uint16) ((x) + 0.5) macro
75 red[i] = ROUND((pow(i / 255.0, 1.0 / image_gamma) * 65535.0));
76 green[i] = ROUND((pow(i / 255.0, 1.0 / image_gamma) * 65535.0));
77 blue[i] = ROUND((pow(i / 255.0, 1.0 / image_gamma) * 65535.0));
/macosx-10.10/ksh-23/ksh/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 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 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 Dvmstat.c77 { s = ROUND(s,ALIGN);
H A Dvmmopen.c70 #define MMHEAD(file) ROUND(sizeof(Mmvm_t)+strlen(file), ALIGN)
174 size = ROUND(size, _Vmpagesize);
498 size = ROUND(size, _Vmpagesize);
H A Dvmprivate.c63 if((size = ROUND(s,vd->incr)) < s)
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);
905 s = (size - SIZE(rp)) + sizeof(Head_t); s = ROUND(s,vd->incr);
1024 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
1245 { nsize = ROUND(nsize, _Vmpagesize);
/macosx-10.10/ksh-23/ksh/src/lib/libast/regex/
H A Dregcache.c33 #define ROUND 64 /* pattern buffer size round */ macro
171 cp->size = roundof(i, ROUND);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Dfuzzy.eps.f905 ! ROUND functions - implemented in Fortran.
164 DOUBLE PRECISION FUNCTION ROUND(X,CT) function
168 ROUND=TFLOOR(X+0.5D0,CT)
/macosx-10.10/ncurses-44/ncurses/test/
H A Dtclock.c47 #define ROUND(value) ((int)((value) + 0.5)) macro
49 #define A2X(angle,radius) ROUND(ASPECT * radius * sin(angle))
50 #define A2Y(angle,radius) ROUND(radius * cos(angle))
/macosx-10.10/vim-55/runtime/syntax/
H A Dmodula3.vim33 syn keyword modula3Keyword ROUND SET SUBARRAY TEXT TRUE TRUNC TRY TYPE
H A Dcsc.vim64 sy keyword cscFunction contained SANCESTVAL RSIBLINGS ROUND REMAINDER RELATIVE PTD
79 sy keyword cscFunction contained @SANCESTVAL @RSIBLINGS @ROUND @REMAINDER @RELATIVE @PTD
H A Dmodsim3.vim44 syn keyword modsim3Builtin REPLACE REMOVEMONITOR ROUND SCHAR SIZEOF SPRINT
H A Doccam.vim29 syn keyword occamType PROCESSOR PACKED RECORD PROTOCOL SHARED ROUND TRUNC
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-snprintf.c622 static LLONG ROUND(LDOUBLE value) function
732 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
/macosx-10.10/rsync-45/rsync/lib/
H A Dsnprintf.c613 static LLONG ROUND(LDOUBLE value) function
717 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/dbs/xtiff/
H A Dxtiff.c75 #define ROUND(x) (uint16) ((x) + 0.5) macro
556 redMap[i] = ROUND((pow(dRed[i] / 65535.0, i_gamma) * 65535.0));
557 greenMap[i] = ROUND((pow(dGreen[i] / 65535.0, i_gamma) * 65535.0));
558 blueMap[i] = ROUND((pow(dBlue[i] / 65535.0, i_gamma) * 65535.0));
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_support.m315 ROUND(Py_ssize_t v, Py_ssize_t a)
765 return ROUND(size, align);
860 acc_size = ROUND (acc_size, align);
868 acc_size = ROUND(acc_size, max_align);
1177 offset = ROUND(offset, align);
1529 offset = ROUND(offset, align);
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_support.m315 ROUND(Py_ssize_t v, Py_ssize_t a)
762 return ROUND(size, align);
857 acc_size = ROUND (acc_size, align);
865 acc_size = ROUND(acc_size, max_align);
1185 offset = ROUND(offset, align);
1555 offset = ROUND(offset, align);
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dobjc_support.m318 ROUND(Py_ssize_t v, Py_ssize_t a)
765 return ROUND(size, align);
860 acc_size = ROUND (acc_size, align);
868 acc_size = ROUND(acc_size, max_align);
1197 offset = ROUND(offset, align);
1587 offset = ROUND(offset, align);
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dsnprintf.c313 #define ROUND(d, p) \ macro
976 d = ROUND(d, p);
1037 d = ROUND(d, p);

Completed in 333 milliseconds

12