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

1 2 3 4 56 7 8 9

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 673 public static final byte MIN = 0;
686 case MIN:
687 return "MIN";
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-private.hh 180 #undef MIN
182 static inline Type MIN (const Type &a, const Type &b) { return a < b ? a : b; }
667 bars + sizeof (bars) - 1 - MIN ((unsigned int) sizeof (bars), (unsigned int) (sizeof (VBAR) - 1) * level),
936 len = MIN (ARRAY_LENGTH (buf) - 1, len);
  /external/chromium_org/third_party/libusb/src/libusb/
libusbi.h 147 #define MIN(a, b) ((a) < (b) ? (a) : (b))
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 28 #define MIN(x,y) ((x)<(y)?(x):(y))
691 nRead = MIN(filesize - iOffset, iAmt64);
722 nCopy = MIN(nByte64-iBeginIn, iAmt64-iBeginOut);
799 s = MIN(s, pWrite->iOffset);
904 pLock->eLock = MIN(pLock->eLock, eLock);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-swing.jar 
  /external/harfbuzz_ng/src/
hb-private.hh 141 #undef MIN
143 static inline Type MIN (const Type &a, const Type &b) { return a < b ? a : b; }
619 bars + sizeof (bars) - 1 - MIN ((unsigned int) sizeof (bars), (unsigned int) (sizeof (VBAR) - 1) * level),
886 len = MIN (ARRAY_LENGTH (buf) - 1, len);
  /external/libpng/contrib/gregbook/
rpng2-win.c 134 #define MIN(a,b) (a<b?a:b)
135 #define CLIP(a,min,max) MAX(min,MIN((a),max))
137 #define CLIP8P(c) MAX(0,(MIN((c),255))) /* 8-bit pos. integer (uch) */
    [all...]
rpng2-x.c 125 #define MIN(a,b) (a<b?a:b)
126 #define CLIP(a,min,max) MAX(min,MIN((a),max))
128 #define CLIP8P(c) MAX(0,(MIN((c),255))) /* 8-bit pos. integer (uch) */
    [all...]
  /external/libunwind/src/ia64/
unwind_i.h 45 #ifdef MIN
46 # undef MIN
48 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /external/libusb/libusb/
libusbi.h 103 #define MIN(a, b) ((a) < (b) ? (a) : (b))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 343 #undef MIN
345 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
sockets.c 50 #define MIN(x,y) ({ typeof(x) _x = (x); typeof(y) _y = (y); _x <= _y ? _x : _y; })
817 int to_copy = MIN((int)sizeof(host_name)-1, port_name - host_and_port);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucurr.cpp 855 #ifndef MIN
856 #define MIN(a,b) (((a)<(b)) ? (a) : (b))
869 i < MIN(currName_1->currencyNameLen, currName_2->currencyNameLen);
    [all...]
  /external/chromium_org/third_party/libevent/
http.c 188 #ifndef MIN
189 #define MIN(a,b) (((a)<(b))?(a):(b))
1177 evhttp_add_event(&evcon->ev, MIN(3600, 2 << evcon->retry_cnt),
    [all...]
evdns.c 129 #undef MIN
130 #define MIN(a,b) ((a)<(b)?(a):(b))
471 &global_nameserver_timeouts[MIN(ns->failed_times,
899 addrtocopy = MIN(MAX_ADDRS - reply.data.a.addrcount, (unsigned)addrcount);
901 ttl_r = MIN(ttl_r, ttl);
917 ttl_r = MIN(ttl_r, ttl);
928 addrtocopy = MIN(MAX_ADDRS - reply.data.aaaa.addrcount, (unsigned)addrcount);
929 ttl_r = MIN(ttl_r, ttl);
    [all...]
  /external/icu/icu4c/source/i18n/
ucurr.cpp 855 #ifndef MIN
856 #define MIN(a,b) (((a)<(b)) ? (a) : (b))
869 i < MIN(currName_1->currencyNameLen, currName_2->currencyNameLen);
    [all...]
  /external/ppp/pppd/plugins/radius/
radiusclient.h 362 #ifndef MIN
363 #define MIN(a, b) ((a) < (b) ? (a) : (b))