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

1234567891011>>

/external/compiler-rt/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)
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/fragment-shader/
H A Dfrag-min.sh8 MIN OUT[0], IN[0], IMM[0]
/external/mesa3d/src/gallium/tests/graw/fragment-shader/
H A Dfrag-min.sh8 MIN OUT[0], IN[0], IMM[0]
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_environment.c40 /* #include <sys/param.h> defines MIN */
41 #if !defined(MIN)
42 #define MIN(arg1,arg2) ((arg1) < (arg2) ? (arg1) : (arg2)) macro
90 size = MIN(count - i, (int)sizeof(uint32_t));
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/vertex-shader/
H A Dvert-min.sh11 MIN OUT[1], IN[1], IMM[0]
/external/mesa3d/src/gallium/tests/graw/vertex-shader/
H A Dvert-min.sh11 MIN OUT[1], IN[1], IMM[0]
/external/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);
189 u_int64_t len_printed = MIN(frame_offset, remaining_len);
192 len_printed = MIN(VBYTES, len_printed);
209 const u_char *ep = MIN(snapend, cp + len);
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-dfa.rb12 MIN = [7, 8].freeze
27 dfa.min.should == DFASubclass::MIN
/external/chromium_org/tools/site_compare/
H A Dcommand_line.py745 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
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTParser.h21 MIN enumerator in enum:__anon307
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dcommon.h25 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) macro
/external/libpng/contrib/gregbook/
H A Dreadpng.h63 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
/external/srec/srec/include/
H A Dall_defs.h95 #ifndef MIN
96 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y)) macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h21 MIN enumerator in enum:__anon311
/external/chromium_org/third_party/sqlite/src/src/
H A Dmemjournal.c36 #ifndef MIN
37 # define MIN(x,y) ((x)<(y)?(x):(y)) macro
102 int nCopy = MIN(nRead, (JOURNAL_CHUNKSIZE - iChunkOffset));
136 int iSpace = MIN(nWrite, JOURNAL_CHUNKSIZE - iChunkOffset);
/external/opencv/cv/src/
H A Dcvcalccontrasthistogram.cpp117 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/
H A Dexif-utils.h179 #undef MIN macro
180 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro

Completed in 706 milliseconds

1234567891011>>