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

1 2 3 4

  /frameworks/compile/libbcc/runtime/lib/
negvdi2.c 25 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
26 if (a == MIN)
negvsi2.c 25 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
26 if (a == MIN)
negvti2.c 27 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
28 if (a == MIN)
mulvdi3.c 26 const di_int MIN = (di_int)1 << (N-1);
27 const di_int MAX = ~MIN;
28 if (a == MIN)
34 if (b == MIN)
53 if (abs_a > MIN / -abs_b)
mulvsi3.c 26 const si_int MIN = (si_int)1 << (N-1);
27 const si_int MAX = ~MIN;
28 if (a == MIN)
34 if (b == MIN)
53 if (abs_a > MIN / -abs_b)
mulvti3.c 28 const ti_int MIN = (ti_int)1 << (N-1);
29 const ti_int MAX = ~MIN;
30 if (a == MIN)
36 if (b == MIN)
55 if (abs_a > MIN / -abs_b)
  /external/dhcpcd/
config.h 16 #ifndef MIN
17 #define MIN(a,b) ((a) <= (b) ? (a) : (b))
  /external/libpng/contrib/gregbook/
readpng.h 63 # define MIN(a,b) ((a) < (b)? (a) : (b))
  /bionic/libc/stdio/
fvwrite.c 65 #define MIN(a, b) ((a) < (b) ? (a) : (b))
88 w = (*fp->_write)(fp->_cookie, p, MIN(len, BUFSIZ2));
132 COPY(w); /* copy MIN(fp->_w,len), */
164 * that the amount to write is MIN(len,nldist).
175 s = MIN((int)len, nldist);
  /external/libpng/
pngrio.c 93 #define MIN(a,b) (a <= b ? a : b)
125 read = MIN(NEAR_BUF_SIZE, remaining);
pngwio.c 72 #define MIN(a,b) (a <= b ? a : b)
103 written = MIN(NEAR_BUF_SIZE, remaining);
  /external/qemu/distrib/libpng-1.2.19/
pngrio.c 71 #define MIN(a,b) (a <= b ? a : b)
101 read = MIN(NEAR_BUF_SIZE, remaining);
pngwio.c 65 #define MIN(a,b) (a <= b ? a : b)
95 written = MIN(NEAR_BUF_SIZE, remaining);
  /frameworks/base/core/jni/
TimeUtils.h 48 MIN = 2,
69 inline void set(int sec, int min, int hour, int mday, int mon, int year,
73 this->t.tm_min = min;
android_util_Log.cpp 31 #define MIN(a,b) ((a<b)?a:b)
  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
stream.h 31 #define MIN(a,b) ((a) < (b)? (a) : (b))
  /hardware/ril/mock-ril/src/cpp/
node_util.cpp 91 #ifndef MIN
92 # define MIN(a, b) ((a) < (b) ? (a) : (b))
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2Encoder.cpp 22 #ifndef MIN
23 #define MIN(a, b) ((a) < (b) ? (a) : (b))
248 *ptr = MIN(*ptr, GLClientState::MAX_TEXTURE_UNITS);
296 *ptr = MIN(*ptr, (GLfloat)GLClientState::MAX_TEXTURE_UNITS);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
param.h 63 /* Macros for min/max. */
64 #define MIN(a,b) (((a)<(b))?(a):(b))
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_macros.h 411 #ifndef MIN
412 #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  /external/iproute2/tc/
tc_util.h 10 #ifndef MIN
11 #define MIN(x,y) ((x)<(y)?(x):(y))
  /external/qemu/
osdep.h 51 #ifndef MIN
52 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
85 # define QEMU_GNUC_PREREQ(maj, min) \
86 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
88 # define QEMU_GNUC_PREREQ(maj, min) 0
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h 126 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
  /hardware/invensense/mlsdk/platform/include/
mlmath.h 98 #ifndef MIN
99 #define MIN(x,y) (((x)<(y))?(x):(y))
  /system/bluetooth/bluedroid/
bluetooth.c 41 #define MIN(x,y) (((x)<(y))?(x):(y))

Completed in 655 milliseconds

1 2 3 4