HomeSort by relevance Sort by last modified time
    Searched defs:MIN (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /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/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
common.h 25 #define MIN(x, y) (((x) < (y)) ? (x) : (y))
  /bionic/libc/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /development/ndk/platforms/android-L/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /external/libpng/contrib/gregbook/
readpng.h 63 # define MIN(a,b) ((a) < (b)? (a) : (b))
  /prebuilts/ndk/9/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/9/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/9/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/9/platforms/android-21/arch-mips64/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fvwrite.c 65 #define MIN(a, b) ((a) < (b) ? (a) : (b))
85 w = (*fp->_write)(fp->_cookie, p, MIN(len, BUFSIZ));
128 COPY(w); /* copy MIN(fp->_w,len), */
160 * that the amount to write is MIN(len,nldist).
171 s = MIN(len, nldist);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 21 MIN
  /external/chromium_org/third_party/libpng/
pngrio.c 78 #define MIN(a,b) (a <= b ? a : b)
110 read = MIN(NEAR_BUF_SIZE, remaining);
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_environment.c 40 /* #include <sys/param.h> defines MIN */
41 #if !defined(MIN)
42 #define MIN(arg1,arg2) ((arg1) < (arg2) ? (arg1) : (arg2))
90 size = MIN(count - i, (int)sizeof(uint32_t));
  /external/libexif/libexif/
exif-utils.h 179 #undef MIN
180 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
  /external/qemu/distrib/libpng-1.2.46/
pngrio.c 93 #define MIN(a,b) (a <= b ? a : b)
125 read = MIN(NEAR_BUF_SIZE, remaining);

Completed in 874 milliseconds

1 2 3 4 5 6 7 8 9