Searched defs:MIN (Results 1 - 25 of 116) sorted by relevance

12345

/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 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)
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)
/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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTParser.h21 MIN enumerator in enum:__anon307
/external/libexif/libexif/
H A Dexif-utils.h179 #undef MIN macro
180 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h21 MIN enumerator in enum:__anon311
H A DLangParser.h21 MIN enumerator in enum:__anon312
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
H A DTreeRewriteParser.h21 MIN enumerator in enum:__anon313
/external/chromium_org/third_party/libpng/
H A Dpngrio.c78 #define MIN(a,b) (a <= b ? a : b) macro
110 read = MIN(NEAR_BUF_SIZE, remaining);
H A Dpngwio.c72 #define MIN(a,b) (a <= b ? a : b) macro
103 written = MIN(NEAR_BUF_SIZE, remaining);
/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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
H A DSimpleCParser.h21 MIN enumerator in enum:__anon306
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
H A DSymbolTableParser.h21 MIN enumerator in enum:__anon308
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_common.h27 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) macro
/external/chromium_org/third_party/opus/src/celt/
H A D_kiss_fft_guts.h29 #define MIN(a,b) ((a)<(b) ? (a):(b)) macro
156 /*# define KISS_FFT_COS(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase))))
157 # define KISS_FFT_SIN(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))*/
/external/iproute2/tc/
H A Dtc_util.h10 #ifndef MIN
11 #define MIN(x,y) ((x)<(y)?(x):(y)) macro
/external/libhevc/common/
H A Dihevc_macros.h43 #define MIN(x,y) (((x) < (y)) ? (x) :(y)) macro

Completed in 1016 milliseconds

12345