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

1 2 3 45 6 7 8 9

  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegDecoder.cpp 204 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
206 #define CLIP3(a, b, c) (MIN(b, MAX(a, c)))
    [all...]
  /ndk/sources/host-tools/make-3.81/
make.h 534 #ifndef MIN
535 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/lib/gcc/x86_64-linux/4.6/gcov-src/
gcov-io.c 34 #undef MIN
35 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
387 gcov_write_block (MIN (gcov_var.offset, GCOV_BLOCK_SIZE));
  /system/core/logwrapper/
logwrap.c 37 #define MIN(a,b) (((a)<(b))?(a):(b))
148 cnt = MIN(line_len, e_buf->buf_size - e_buf->write);
  /device/lge/mako/camera/inc/
omx_jpeg_common.h 72 #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  /external/chromium_org/third_party/icu/source/test/perf/dicttrieperf/
dicttrieperf.cpp 180 #ifndef MIN
181 #define MIN(a,b) (((a)<(b)) ? (a) : (b))
229 int32_t prefixLength=MIN(startPrefixLength, limitPrefixLength);
  /external/chromium_org/third_party/libjpeg_turbo/
jpegint.h 269 #undef MIN
270 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /external/chromium_org/third_party/sqlite/src/src/
test_onefile.c 250 #define MIN(x,y) ((x)<(y)?(x):(y))
309 pTmp->nSize = MIN(pTmp->nSize, size);
424 int iRealAmt = MIN(iRem, BLOCKSIZE - (iRealOff%BLOCKSIZE));
466 int iRealAmt = MIN(iRem, BLOCKSIZE - (iRealOff%BLOCKSIZE));
492 pReal->nDatabase = MIN(pReal->nDatabase, size);
494 pReal->nJournal = MIN(pReal->nJournal, size);
  /external/harfbuzz_ng/util/
options.hh 70 #undef MIN
71 template <typename Type> static inline Type MIN (const Type &a, const Type &b) { return a < b ? a : b; }
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 180 #ifndef MIN
181 #define MIN(a,b) (((a)<(b)) ? (a) : (b))
229 int32_t prefixLength=MIN(startPrefixLength, limitPrefixLength);
  /external/jpeg/
jpegint.h 298 #undef MIN
299 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /external/pdfium/core/include/thirdparties/libjpeg/
jpegint.h 268 #undef MIN
269 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /external/pdfium/core/src/fxcodec/libjpeg/
jpegint.h 268 #undef MIN
269 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /external/pdfium/fpdfsdk/src/
fpdf_flatten.cpp 13 enum FPDF_TYPE { MAX, MIN };
196 rcRet.left = GetMinMaxValue(*pRectArray, MIN, LEFT);
199 rcRet.bottom = GetMinMaxValue(*pRectArray, MIN, BOTTOM);
  /external/qemu/distrib/jpeg-6b/
jpegint.h 298 #undef MIN
299 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 107 #ifndef MIN
108 #define MIN(a, b) ((a) < (b) ? (a) : (b))
    [all...]