HomeSort by: relevance | last modified time | path
    Searched refs:MIN (Results 1 - 25 of 1248) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
negvdi2.c 24 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvsi2.c 24 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvti2.c 26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
27 if (a == MIN)
mulodi4.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
mulosi4.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
muloti4.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
31 if (a == MIN)
37 if (b == MIN)
56 if (abs_a > MIN / -abs_b)
mulvdi3.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvsi3.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvti3.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
  /src/external/bsd/ipf/dist/lib/
icmpcode.c 15 #ifndef MIN
16 # define MIN(a,b) ((a) > (b) ? (b) : (a))
  /src/tests/usr.bin/xlint/lint1/
msg_048.c 19 /* expect+1: warning: enumeration value 'MIN' overflows [48] */
20 MIN,
  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
c_dsp32alu_min.s 2 // Spec Reference: dsp32alu dregs = min ( dregs, dregs)
19 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 )
    [all...]
c_dsp32alu_minmin.s 2 // Spec Reference: dsp32alu dregs = min / min ( dregs, dregs)
19 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)
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
c_dsp32alu_min.s 2 // Spec Reference: dsp32alu dregs = min ( dregs, dregs)
19 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 )
    [all...]
c_dsp32alu_minmin.s 2 // Spec Reference: dsp32alu dregs = min / min ( dregs, dregs)
19 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)
    [all...]
  /src/lib/libcurses/
genfileioh.awk 52 MIN=$1;
53 sub("^minor=", "", MIN);
65 printf("#define CURSES_LIB_MINOR %s\n", MIN);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
minmax.h 0 /* 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))
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
minmax.h 0 /* 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))
  /src/external/gpl2/xcvs/dist/lib/
minmax.h 0 /* 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))
  /src/external/gpl3/binutils/dist/gprofng/src/
gp-gmon.h 14 #ifndef MIN
15 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /src/external/gpl3/gdb/dist/gnulib/import/
minmax.h 0 /* 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))
  /src/external/gpl3/gdb.old/dist/gnulib/import/
minmax.h 0 /* 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))
  /src/external/apache2/llvm/dist/libcxx/src/filesystem/
int128_builtins.cpp 24 const __int128_t MIN = (__int128_t)1 << (N - 1);
25 const __int128_t MAX = ~MIN;
28 if (a == MIN) {
33 if (b == MIN) {
48 if (abs_a > MIN / -abs_b)
  /src/external/lgpl3/gmp/dist/tests/mpn/
t-toom22.c 3 #define MIN_AN MIN(MPN_TOOM22_MUL_MINSIZE,4)
  /src/external/bsd/ntp/dist/scripts/monitoring/
timelocal.pl 4 ;# $time = timelocal($sec,$min,$hours,$mday,$mon,$year,$junk,$junk,$isdst);
5 ;# $time = timegm($sec,$min,$hours,$mday,$mon,$year);
35 $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;

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>