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

1234567891011>>

/macosx-10.9.5/ntp-88/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.9.5/Heimdal-323.92.1/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.9.5/tcl-102/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.9.5/dcerpc-58/dcerpc/include/dce/solaris2.10/
H A Ddce.h104 #if !defined(MIN)
105 # define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/macosx-10.9.5/dcerpc-58/dcerpc/include/dce/solaris2.9/
H A Ddce.h103 #if !defined(MIN)
104 # define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Dcomparison.h12 #define MIN(a, b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a <= _b ? _a : _b; }) macro
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Dcomparison.h12 #define MIN(a, b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a <= _b ? _a : _b; }) macro
/macosx-10.9.5/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.9.5/xnu-2422.115.4/tools/tests/perf_index/
H A Dstress_file_read.c6 #define MIN(a,b) ((a)<(b) ? (a) : (b)) macro
19 left = MIN(length, max_file_size/num_threads);
44 filesize = MIN(length, max_file_size/num_threads);
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Ddgrq.h136 MIN((rqe)->hdrp->len, \
/macosx-10.9.5/apache-786.1/httpd/modules/ssl/
H A Dssl_expr.h50 #ifndef MIN
51 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/macosx-10.9.5/dcerpc-58/dcerpc/include/dce/solaris2.8/
H A Ddce.h106 #if !defined(MIN)
107 # define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
/macosx-10.9.5/file_cmds-230/pax/
H A Dpax.h236 #ifndef MIN
237 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/macosx-10.9.5/hfs-226.1.1/CopyHFSMeta/
H A Ddump.c5 #define MIN(a, b) \ macro
23 unsigned char *tend = MIN(end, cp + WIDTH);
/macosx-10.9.5/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.9.5/Libc-997.90.3/gen/
H A Dgetloadavg.c89 nelem = MIN(nelem, sizeof(loadinfo.ldavg) / sizeof(fixpt_t));
/macosx-10.9.5/NFS-81/nfsd/
H A Dcommon.h57 #define LOG_LEVEL (LOG_WARNING + MIN(config.verbose, 3))

Completed in 145 milliseconds

1234567891011>>