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

1234567891011>>

/netbsd-current/external/bsd/ipf/dist/lib/
H A Dicmpcode.c15 #ifndef MIN
16 # define MIN(a,b) ((a) > (b) ? (b) : (a)) macro
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dnegvdi2.c24 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1); local
25 if (a == MIN)
H A Dnegvsi2.c24 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1); local
25 if (a == MIN)
H A Dnegvti2.c26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1); local
27 if (a == MIN)
H A Dmulodi4.c25 const di_int MIN = (di_int)1 << (N-1); local
26 const di_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
H A Dmulosi4.c25 const si_int MIN = (si_int)1 << (N-1); local
26 const si_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
H A Dmuloti4.c27 const ti_int MIN = (ti_int)1 << (N-1); local
28 const ti_int MAX = ~MIN;
31 if (a == MIN)
37 if (b == MIN)
56 if (abs_a > MIN / -abs_b)
H A Dmulvdi3.c25 const di_int MIN = (di_int)1 << (N-1); local
26 const di_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
H A Dmulvsi3.c25 const si_int MIN = (si_int)1 << (N-1); local
26 const si_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
H A Dmulvti3.c27 const ti_int MIN = (ti_int)1 << (N-1); local
28 const ti_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_048.c19 /* expect+1: warning: enumeration value 'MIN' overflows [48] */
20 MIN, enumerator in enum:int_limits
/netbsd-current/external/gpl3/gdb.old/dist/sim/testsuite/sim/bfin/
H A Dc_dsp32alu_min.s19 R0 = MIN ( R0 , R0 );
20 R1 = MIN ( R0 , R1 );
21 R2 = MIN ( R0 , R2 );
22 R3 = MIN ( R0 , R3 );
23 R4 = MIN ( R0 , R4 );
24 R5 = MIN ( R0 , R5 );
25 R6 = MIN ( R0 , R6 );
26 R7 = MIN ( R0 , R7 );
44 R0 = MIN ( R1 , R0 );
45 R1 = MIN ( R
[all...]
H A Dc_dsp32alu_minmin.s19 R0 = MIN ( R0 , R0 ) (V);
20 R1 = MIN ( R0 , R1 ) (V);
21 R2 = MIN ( R0 , R2 ) (V);
22 R3 = MIN ( R0 , R3 ) (V);
23 R4 = MIN ( R0 , R4 ) (V);
24 R5 = MIN ( R0 , R5 ) (V);
25 R6 = MIN ( R0 , R6 ) (V);
26 R7 = MIN ( R0 , R7 ) (V);
44 R0 = MIN ( R1 , R0 ) (V);
45 R1 = MIN ( R
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/testsuite/bfin/
H A Dc_dsp32alu_min.s19 R0 = MIN ( R0 , R0 );
20 R1 = MIN ( R0 , R1 );
21 R2 = MIN ( R0 , R2 );
22 R3 = MIN ( R0 , R3 );
23 R4 = MIN ( R0 , R4 );
24 R5 = MIN ( R0 , R5 );
25 R6 = MIN ( R0 , R6 );
26 R7 = MIN ( R0 , R7 );
44 R0 = MIN ( R1 , R0 );
45 R1 = MIN ( R
[all...]
H A Dc_dsp32alu_minmin.s19 R0 = MIN ( R0 , R0 ) (V);
20 R1 = MIN ( R0 , R1 ) (V);
21 R2 = MIN ( R0 , R2 ) (V);
22 R3 = MIN ( R0 , R3 ) (V);
23 R4 = MIN ( R0 , R4 ) (V);
24 R5 = MIN ( R0 , R5 ) (V);
25 R6 = MIN ( R0 , R6 ) (V);
26 R7 = MIN ( R0 , R7 ) (V);
44 R0 = MIN ( R1 , R0 ) (V);
45 R1 = MIN ( R
[all...]
/netbsd-current/lib/libcurses/
H A Dgenfileioh.awk52 MIN=$1;
53 sub("^minor=", "", MIN);
65 printf("#define CURSES_LIB_MINOR %s\n", MIN);
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dminmax.h0 /* MIN, MAX macros.
21 /* Note: MIN, MAX are also defined in <sys/param.h> on some systems
23 MIN, MAX macro redefinitions on some systems; the workaround is to
29 If more than one of these system headers define MIN and MAX, pick just
37 /* Note: MIN and MAX should be used with two arguments of the
55 /* MIN(a,b) returns the minimum of A and B. */
56 #ifndef MIN
57 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dminmax.h0 /* MIN, MAX macros.
21 /* Note: MIN, MAX are also defined in <sys/param.h> on some systems
23 MIN, MAX macro redefinitions on some systems; the workaround is to
29 If more than one of these system headers define MIN and MAX, pick just
37 /* Note: MIN and MAX should be used with two arguments of the
55 /* MIN(a,b) returns the minimum of A and B. */
56 #ifndef MIN
57 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
H A Dminmax.h0 /* MIN, MAX macros.
21 /* Note: MIN, MAX are also defined in <sys/param.h> on some systems
23 MIN, MAX macro redefinitions on some systems; the workaround is to
29 If more than one of these system headers define MIN and MAX, pick just
37 /* Note: MIN and MAX should be used with two arguments of the
55 /* MIN(a,b) returns the minimum of A and B. */
56 #ifndef MIN
57 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dminmax.h0 /* MIN, MAX macros.
21 /* Note: MIN, MAX are also defined in <sys/param.h> on some systems
23 MIN, MAX macro redefinitions on some systems; the workaround is to
29 If more than one of these system headers define MIN and MAX, pick just
37 /* Note: MIN and MAX should be used with two arguments of the
55 /* MIN(a,b) returns the minimum of A and B. */
56 #ifndef MIN
57 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dminmax.h0 /* MIN, MAX macros.
21 /* Note: MIN, MAX are also defined in <sys/param.h> on some systems
23 MIN, MAX macro redefinitions on some systems; the workaround is to
29 If more than one of these system headers define MIN and MAX, pick just
37 /* Note: MIN and MAX should be used with two arguments of the
55 /* MIN(a,b) returns the minimum of A and B. */
56 #ifndef MIN
57 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/netbsd-current/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Dint128_builtins.cpp24 const __int128_t MIN = (__int128_t)1 << (N - 1); local
25 const __int128_t MAX = ~MIN;
28 if (a == MIN) {
33 if (b == MIN) {
48 if (abs_a > MIN / -abs_b)
/netbsd-current/external/lgpl3/gmp/dist/tests/mpn/
H A Dt-toom22.c3 #define MIN_AN MIN(MPN_TOOM22_MUL_MINSIZE,4)
/netbsd-current/external/bsd/ntp/dist/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;
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_mul.c28 if (MIN (a->used, b->used) >= TOOM_MUL_CUTOFF) {
34 if (MIN (a->used, b->used) >= KARATSUBA_MUL_CUTOFF) {
49 MIN(a->used, b->used) <=

Completed in 153 milliseconds

1234567891011>>