HomeSort by relevance Sort by last modified time
    Searched defs:MIN (Results 1 - 25 of 360) 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/syslinux/core/elflink/
common.h 26 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
  /external/flac/libFLAC/include/private/
macros.h 55 #define flac_min(a,b) MIN(a,b)
64 #ifndef MIN
65 #define MIN(x,y) ((x) <= (y) ? (x) : (y))
  /external/libavc/encoder/
ime_macros.h 39 #define MIN(a,b) ((a < b)?(a):(b))
  /external/ltp/testcases/kernel/fs/fsstress/
xfscompat.h 6 #define MIN(a,b) ((a)<(b) ? (a):(b))
  /external/ltp/testcases/network/nfs/nfs_fsstress/
xfscompat.h 6 #define MIN(a,b) ((a)<(b) ? (a):(b))
  /bionic/libc/include/sys/
param.h 48 /* Macros for min/max. */
49 #define MIN(a,b) (((a)<(b))?(a):(b))
  /development/ndk/platforms/android-21/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /device/huawei/angler/power/
metadata-defs.h 37 #define MIN(x,y) (((x)>(y))?(y):(x))
  /device/lge/bullhead/power/
metadata-defs.h 37 #define MIN(x,y) (((x)>(y))?(y):(x))
  /external/libpng/contrib/gregbook/
readpng.h 63 # define MIN(a,b) ((a) < (b)? (a) : (b))
  /external/ltp/lib/
get_path.c 43 #ifndef MIN
44 #define MIN(a, b) ((a)<(b)?(a):(b))
71 snprintf(buf, MIN(buf_len, (size_t) (end - start + 1)),
  /external/syslinux/com32/lib/sys/module/
common.h 26 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))

Completed in 606 milliseconds

1 2 3 4 5 6 7 8 91011>>