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

123456

/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/syslinux/core/elflink/
H A Dcommon.h26 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) macro
/external/flac/libFLAC/include/private/
H A Dmacros.h55 #define flac_min(a,b) MIN(a,b)
64 #ifndef MIN
65 #define MIN(x,y) ((x) <= (y) ? (x) : (y)) macro
/external/libavc/encoder/
H A Dime_macros.h39 #define MIN(a,b) ((a < b)?(a):(b)) macro
/external/ltp/testcases/kernel/fs/fsstress/
H A Dxfscompat.h6 #define MIN(a,b) ((a)<(b) ? (a):(b)) macro
/external/ltp/testcases/network/nfs/nfs_fsstress/
H A Dxfscompat.h6 #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/syslinux/com32/lib/sys/module/
H A Dcommon.h26 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTParser.h21 MIN enumerator in enum:__anon481
/external/libexif/libexif/
H A Dexif-utils.h179 #undef MIN macro
180 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/external/ltp/lib/
H A Dget_path.c43 #ifndef MIN
44 #define MIN(a, b) ((a)<(b)?(a):(b)) macro
71 snprintf(buf, MIN(buf_len, (size_t) (end - start + 1)),
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h21 MIN enumerator in enum:__anon485
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
H A DTreeRewriteParser.h21 MIN enumerator in enum:__anon487
/external/libmpeg2/common/
H A Dicv_macros.h45 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro
50 #define MED3(a,b,c) (MIN(MAX( MIN((a),(b)), (c)), MAX((a),(b))))
/external/syslinux/com32/lib/libpng/
H A Dpngrio.c78 #define MIN(a,b) (a <= b ? a : b) macro
110 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:__anon480
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
H A DSymbolTableParser.h21 MIN enumerator in enum:__anon482

Completed in 1352 milliseconds

123456