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

12345

/external/compiler-rt/lib/
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/dhcpcd/
H A Dconfig.h16 #ifndef MIN
17 #define MIN(a,b) ((a) <= (b) ? (a) : (b)) 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:__anon304
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h21 MIN enumerator in enum:__anon308
H A DLangParser.h21 MIN enumerator in enum:__anon309
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
H A DTreeRewriteParser.h21 MIN enumerator in enum:__anon310
/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/elfutils/bionic-fixup/
H A DAndroidFixup.h31 #ifndef MIN
32 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro
/external/qemu/distrib/libpng-1.2.19/
H A Dpngrio.c71 #define MIN(a,b) (a <= b ? a : b) macro
101 read = MIN(NEAR_BUF_SIZE, remaining);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
H A DSimpleCParser.h21 MIN enumerator in enum:__anon303
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
H A DSymbolTableParser.h21 MIN enumerator in enum:__anon305
/external/chromium_org/third_party/opus/src/celt/
H A D_kiss_fft_guts.h29 #define MIN(a,b) ((a)<(b) ? (a):(b)) macro
148 /*# define KISS_FFT_COS(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase))))
149 # define KISS_FFT_SIN(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))*/
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h411 #ifndef MIN
412 #define MIN(x, y) ( ((x)<(y))?(x):(y) ) macro
/external/harfbuzz_ng/util/
H A Dansi-print.cc44 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
117 color_t *p = data + x + MIN (y + row, height - 1) * stride;
/external/iproute2/tc/
H A Dtc_util.h10 #ifndef MIN
11 #define MIN(x,y) ((x)<(y)?(x):(y)) macro

Completed in 642 milliseconds

12345