HomeSort by relevance Sort by last modified time
    Searched refs:MIN (Results 1 - 25 of 372) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/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)
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/fragment-shader/
frag-min.sh 8 MIN OUT[0], IN[0], IMM[0]
  /external/mesa3d/src/gallium/tests/graw/fragment-shader/
frag-min.sh 8 MIN OUT[0], IN[0], IMM[0]
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_environment.c 40 /* #include <sys/param.h> defines MIN */
41 #if !defined(MIN)
42 #define MIN(arg1,arg2) ((arg1) < (arg2) ? (arg1) : (arg2))
90 size = MIN(count - i, (int)sizeof(uint32_t));
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/vertex-shader/
vert-min.sh 11 MIN OUT[1], IN[1], IMM[0]
  /external/mesa3d/src/gallium/tests/graw/vertex-shader/
vert-min.sh 11 MIN OUT[1], IN[1], IMM[0]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 12 MIN = [7, 8].freeze
27 dfa.min.should == DFASubclass::MIN
  /bionic/libc/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /development/ndk/platforms/android-L/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 21 MIN
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
common.h 25 #define MIN(x, y) (((x) < (y)) ? (x) : (y))
  /external/libpng/contrib/gregbook/
readpng.h 63 # define MIN(a,b) ((a) < (b)? (a) : (b))
  /external/chromium_org/tools/site_compare/
command_line.py 745 MIN = "test --reqint 123 param1 --req1 "
751 (MIN, 0), # success!
754 (MIN+"param2", 0), # another positional parameter is okay
755 (MIN+"param2 param3", 0), # and so are three
756 (MIN+"param2 param3 param4", 1), # but four are just too many
757 (MIN+"--int", 1), # where's the value?
758 (MIN+"--int 456", 0), # this is fine
759 (MIN+"--int456", 0), # as is this
760 (MIN+"--int:456", 0), # and this
761 (MIN+"--int=456", 0), # and thi
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.h 21 MIN
  /external/chromium_org/third_party/sqlite/src/src/
memjournal.c 36 #ifndef MIN
37 # define MIN(x,y) ((x)<(y)?(x):(y))
102 int nCopy = MIN(nRead, (JOURNAL_CHUNKSIZE - iChunkOffset));
136 int iSpace = MIN(nWrite, JOURNAL_CHUNKSIZE - iChunkOffset);
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 117 int v1_r = MIN( data0[x], data0[x + 1] );
125 array[val0] += MIN( t - v1_r, v2_r - t );
131 int v1_d = MIN( data0[x], data0[x + step] );
139 array[val0] += MIN( t - v1_d, v2_d - t );
236 int v1_r = MIN( data0[x], data0[x + 1] );
245 array[val0] += MIN( t - v1_r, v2_r - t );
255 int v1_d = MIN( data0[x], data0[x + step] );
263 array[val0] += MIN( t - v1_d, v2_d - t );
  /external/libexif/libexif/
exif-utils.h 179 #undef MIN
180 #define MIN(a, b) (((a) < (b)) ? (a) : (b))

Completed in 1002 milliseconds

1 2 3 4 5 6 7 8 91011>>