Searched refs:MIN (Results 1 - 25 of 429) sorted by relevance

1234567891011>>

/macosx-10.10/ntp-92/scripts/monitoring/
H A Dtimelocal.pl35 $MIN = 60 * $SEC;
36 $HR = 60 * $MIN;
46 $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS;
54 $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS
55 + $tzmin * $MIN - 60 * 60 * ($_[8] != 0);
75 $guess -= $g[0] * $SEC + $g[1] * $MIN + $g[2] * $HR + $g[3] * $DAYS;
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_mul.c26 if (MIN (a->used, b->used) >= TOOM_MUL_CUTOFF) {
32 if (MIN (a->used, b->used) >= KARATSUBA_MUL_CUTOFF) {
47 MIN(a->used, b->used) <=
H A Dbn_mp_get_int.c29 i = MIN(a->used,(int)((sizeof(unsigned long)*CHAR_BIT+DIGIT_BIT-1)/DIGIT_BIT))-1;
H A Dbn_fast_s_mp_mul_digs.c48 pa = MIN(digs, a->used + b->used);
58 ty = MIN(b->used-1, ix);
68 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c53 ty = MIN(a->used-1, ix);
63 iy = MIN(a->used-tx, ty+1);
69 iy = MIN(iy, (ty-tx+1)>>1);
H A Dbn_fast_s_mp_mul_high_digs.c49 ty = MIN(b->used-1, ix);
59 iy = MIN(a->used-tx, ty+1);
H A Dbn_s_mp_mul_digs.c32 MIN (a->used, b->used) <
49 pb = MIN (b->used, digs - ix);
/macosx-10.10/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_mul.c26 if (MIN (a->used, b->used) >= TOOM_MUL_CUTOFF) {
32 if (MIN (a->used, b->used) >= KARATSUBA_MUL_CUTOFF) {
47 MIN(a->used, b->used) <=
H A Dbn_fast_s_mp_mul_digs.c48 pa = MIN(digs, a->used + b->used);
58 ty = MIN(b->used-1, ix);
68 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c53 ty = MIN(a->used-1, ix);
63 iy = MIN(a->used-tx, ty+1);
69 iy = MIN(iy, (ty-tx+1)>>1);
H A Dbn_s_mp_mul_digs.c32 MIN (a->used, b->used) <
49 pb = MIN (b->used, digs - ix);
/macosx-10.10/dcerpc-61/dcerpc/include/dce/solaris2.10/
H A Ddce.h104 #if !defined(MIN)
105 # define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/macosx-10.10/dcerpc-61/dcerpc/include/dce/solaris2.9/
H A Ddce.h103 #if !defined(MIN)
104 # define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/macosx-10.10/Security-57031.1.35/Security/utilities/src/
H A Dcomparison.h28 #define MIN(a, b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a <= _b ? _a : _b; }) macro
/macosx-10.10/Security-57031.1.35/Security/utilities/utilities/
H A Dcomparison.h28 #define MIN(a, b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a <= _b ? _a : _b; }) macro
/macosx-10.10/gnudiff-19/diffutils/lib/
H A Dcmpbuf.c74 #undef MIN macro
75 #define MIN(a, b) ((a) <= (b) ? (a) : (b)) macro
92 size_t bytes_to_read = MIN (buflim - bp, readlim);
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-zeromq.c111 u_int64_t body_len_printed = MIN(body_len_captured, body_len_declared);
124 body_len_printed = MIN(VBYTES + 1, body_len_printed);
142 const u_char *ep = MIN(snapend, cp + len);
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Ddgrq.h136 MIN((rqe)->hdrp->len, \
/macosx-10.10/dcerpc-61/dcerpc/include/dce/solaris2.8/
H A Ddce.h106 #if !defined(MIN)
107 # define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/macosx-10.10/file_cmds-242/pax/
H A Dpax.h236 #ifndef MIN
237 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/macosx-10.10/hfs-285/CopyHFSMeta/
H A Ddump.c5 #define MIN(a, b) \ macro
23 unsigned char *tend = MIN(end, cp + WIDTH);
/macosx-10.10/bc-21/bc/h/
H A Dnumber.h66 #ifdef MIN
67 #undef MIN macro
71 #define MIN(a,b) ((a)>(b)?(b):(a)) macro
/macosx-10.10/Libc-1044.1.2/gen/
H A Dgetloadavg.c89 nelem = MIN(nelem, sizeof(loadinfo.ldavg) / sizeof(fixpt_t));
/macosx-10.10/NFS-82/nfsd/
H A Dcommon.h57 #define LOG_LEVEL (LOG_WARNING + MIN(config.verbose, 3))
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D__init__.py38 def MIN(a, b): function

Completed in 370 milliseconds

1234567891011>>