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

1 2 3 45 6 7 8

  /external/libpcap/
optimize.c 188 #ifndef MAX
189 #define MAX(a,b) ((a)>(b)?(a):(b))
206 level = MAX(JT(b)->level, JF(b)->level) + 1;
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 133 #define MAX(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) */
836 int k, hmax, max; local
    [all...]
rpng2-x.c 124 #define MAX(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) */
305 long loop_interval = -1; /* seconds (100,000 max) */
1058 int k, hmax, max; local
1842 int k, hmax, max; local
    [all...]
  /external/libusb/libusb/
libusbi.h 104 #define MAX(a, b) ((a) > (b) ? (a) : (b))
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 421 #ifndef MAX
422 #define MAX(x, y) ((x >= y) ? x : y)
423 #endif /* !defined(MAX) */
949 - MAX(precision, pos) /* Number of integer digits. */
    [all...]
  /external/skia/src/core/
SkStream.cpp 174 const size_t MAX = sizeof(scratch);
178 if (n > MAX) {
179 n = MAX;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 344 #undef MAX
346 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucurr.cpp 664 #ifndef MAX
665 #define MAX(a,b) (((a)<(b)) ? (b) : (a))
767 dest = (UChar*)uprv_malloc(sizeof(UChar) * MAX(destLen, len));
1326 int32_t max = 0; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxenc.c 205 "Max number of threads to use");
229 "Max number of frames to lag");
267 static const arg_def_t max_quantizer = ARG_DEF(NULL, "max-q", 1,
272 "Datarate overshoot (max) target (%)");
292 "GOP max bitrate (% of target)");
300 static const arg_def_t kf_max_dist = ARG_DEF(NULL, "kf-max-dist", 1,
320 "AltRef Max Frames");
334 static const arg_def_t max_intra_rate_pct = ARG_DEF(NULL, "max-intra-rate", 1,
335 "Max I-frame bitrate (pct)");
555 #define MAX(x,y) ((x)>(y)?(x):(y)
    [all...]
  /external/icu/icu4c/source/i18n/
ucurr.cpp 859 #ifndef MAX
860 #define MAX(a,b) (((a)<(b)) ? (b) : (a))
965 dest = (UChar*)uprv_malloc(sizeof(UChar) * MAX(destLen, len));
1536 int32_t max = 0; local
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 252 "Max number of threads to use");
274 "Max number of frames to lag");
304 static const arg_def_t max_quantizer = ARG_DEF(NULL, "max-q", 1,
309 "Datarate overshoot (max) target (%)");
329 "GOP max bitrate (% of target)");
337 static const arg_def_t kf_max_dist = ARG_DEF(NULL, "kf-max-dist", 1,
357 "AltRef Max Frames");
371 static const arg_def_t max_intra_rate_pct = ARG_DEF(NULL, "max-intra-rate", 1,
372 "Max I-frame bitrate (pct)");
592 #define MAX(x,y) ((x)>(y)?(x):(y)
    [all...]
  /external/ppp/pppd/plugins/radius/
radiusclient.h 55 int max; member in struct:server
365 #ifndef MAX
366 #define MAX(a, b) ((a) > (b) ? (a) : (b))
  /external/ppp/pppd/
pppd.h 79 #define MAXWORDLEN 1024 /* max length of word in file (incl null) */
80 #define MAXARGS 1 /* max # args to a command */
81 #define MAXNAMELEN 256 /* max length of hostname or name for auth */
82 #define MAXSECRETLEN 256 /* max length of password or secret */
309 extern int maxfail; /* Max # of unsuccessful connection attempts */
313 extern int max_data_rate; /* max bytes/sec through charshunt */
328 3 - max(in,out) */
    [all...]
  /external/strace/
defs.h 95 #ifndef MAX
96 # define MAX(a, b) (((a) > (b)) ? (a) : (b))
101 #define CLAMP(val, min, max) MIN(MAX(min, val), max)
  /external/wpa_supplicant_8/src/tls/
libtommath.c 66 #ifndef MAX
67 #define MAX(x,y) ((x)>(y)?(x):(y))
223 int olduse, res, min, max; local
230 max = a->used;
234 max = b->used;
239 if (c->alloc < max + 1) {
240 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
247 c->used = max + 1;
280 if (min != max) {
281 for (; i < max; i++)
310 int olduse, res, min, max; local
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 481 image->outlineAlpha = max(max_alpha_over_row(image->rows[innerMidY], innerStartX, innerEndX),
894 #define MAX(a,b) ((a)>(b)?(a):(b))
931 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation);
932 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation);
933 maxGrayDeviation = MAX(ABS(bb - rr), maxGrayDeviation);
935 NOISY(printf("New max dev. = %d at pixel (%d, %d) = (%d %d %d %d)\n",
994 NOISY(printf("Max gray deviation = %d, tolerance = %d\n", maxGrayDeviation, grayscaleTolerance));
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
vpxenc.c 252 "Max number of threads to use");
274 "Max number of frames to lag");
304 static const arg_def_t max_quantizer = ARG_DEF(NULL, "max-q", 1,
309 "Datarate overshoot (max) target (%)");
329 "GOP max bitrate (% of target)");
337 static const arg_def_t kf_max_dist = ARG_DEF(NULL, "kf-max-dist", 1,
357 "AltRef Max Frames");
371 static const arg_def_t max_intra_rate_pct = ARG_DEF(NULL, "max-intra-rate", 1,
372 "Max I-frame bitrate (pct)");
592 #define MAX(x,y) ((x)>(y)?(x):(y)
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 309 #ifndef MAX
310 # define MAX(x,y) ((x) < (y) ? (y) : (x))
    [all...]
  /external/pixman/pixman/
pixman-private.h 869 #ifndef MAX
870 # define MAX(a, b) ((a > b) ? a : b)
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 96 #define PKTQ_LEN_DEFAULT 128 /* Max 128 packets */
106 uint16 max; /* maximum number of queued packets */ member in struct:pktq_prec
146 uint16 max; /* total max packets */ \
287 #define pktq_psetmax(pq, prec, _max) ((pq)->q[prec].max = (_max))
288 #define pktq_pmax(pq, prec) ((pq)->q[prec].max)
290 #define pktq_pavail(pq, prec) ((pq)->q[prec].max - (pq)->q[prec].len)
291 #define pktq_pfull(pq, prec) ((pq)->q[prec].len >= (pq)->q[prec].max)
318 #define pktq_max(pq) ((int)(pq)->max)
319 #define pktq_avail(pq) ((int)((pq)->max - (pq)->len)
    [all...]
  /hardware/intel/common/libva/test/encode/
h264encode.c 138 #define MAX(a, b) ((a)>(b)?(a):(b))
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 476 #ifndef MAX
477 # define MAX(a,b) ((a) < (b) ? (b) : (a))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 57 MAX = 'max'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 57 MAX = 'max'
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 

Completed in 1311 milliseconds

1 2 3 45 6 7 8