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

1 2 3 4

  /external/clang/test/CodeGen/
enum2.c 3 enum e { MAX };
7 v = MAX;
  /external/clang/test/CodeGenCXX/
debug-info-enum.cpp 4 enum index { MAX };
7 v = MAX;
  /external/valgrind/main/memcheck/tests/
brk2.c 4 #define MAX 3000
13 for (i=0; i<MAX; i++) {
  /external/dbus/tools/
dbus-launch.h 37 #undef MAX
38 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
  /external/dhcpcd/
config.h 12 #ifndef MAX
13 #define MAX(a,b) ((a) >= (b) ? (a) : (b))
  /external/icu4c/i18n/
quant.h 26 enum { MAX = 0x7FFFFFFF };
  /external/v8/test/mjsunit/
strict-mode-opt.js 29 var MAX = 1000000;
36 if (n == MAX) { undefined_variable_strict = "value"; }
44 for (var i = 0; i <= MAX; i ++) {
49 assertEquals(MAX, i);
53 fail("ReferenceError after MAX iterations", "no exception");
60 if (n == MAX) { undefined_variable_nonstrict = "The nonstrict value"; }
69 for (var i = 0; i <= MAX; i ++) {
84 if (n == MAX) { undefined_variable_strict_2 = "value"; }
88 for (var i = 0; i <= MAX; i ++) {
93 assertEquals(MAX, i)
    [all...]
  /external/libpng/contrib/gregbook/
readpng.h 61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b))
readpng2.h 61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b))
  /frameworks/compile/libbcc/runtime/lib/
mulvdi3.c 27 const di_int MAX = ~MIN;
48 if (abs_a > MAX / abs_b)
mulvsi3.c 27 const si_int MAX = ~MIN;
48 if (abs_a > MAX / abs_b)
mulvti3.c 29 const ti_int MAX = ~MIN;
50 if (abs_a > MAX / abs_b)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
param.h 63 /* Macros for min/max. */
65 #define MAX(a,b) (((a)>(b))?(a):(b))
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_macros.h 407 #ifndef MAX
408 #define MAX(x, y) ( ((x)>(y))?(x):(y) )
  /external/giflib/
gifalloc.c 22 #define MAX(x, y) (((x) > (y)) ? (x) : (y))
138 ColorUnion = MakeMapObject(MAX(ColorIn1->ColorCount,
  /external/qemu/
osdep.h 54 #ifndef MAX
55 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h 129 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
  /hardware/invensense/mlsdk/platform/include/
mlmath.h 102 #ifndef MAX
103 #define MAX(x,y) (((x)>(y))?(x):(y))
  /dalvik/vm/
Common.h 53 #define MAX(x,y) (((x) > (y)) ? (x) : (y))
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
AttributesImplSerializer.java 57 private static final int MAX = 12;
63 private static final int MAXMinus1 = MAX - 1;
75 if (super.getLength() < MAX)
113 // so either compare (index+1) to MAX, or compare index to (MAX-1)
121 switchOverToHash(MAX);
175 if (MAX <= len)
201 if (MAX <= numAtts)
217 if (super.getLength() < MAX)
  /external/icu4c/test/intltest/
mnkytst.cpp 26 #ifndef MAX
27 #define MAX(x,y) ((x) > (y) ? (x) : (y))
86 source.extract(MIN(s, slen), MAX(s, slen), subs);
87 source.extract(MIN(t, tlen), MAX(t, tlen), subt);
161 source.extract(MIN(s, slen), MAX(s, slen), subs);
162 source.extract(MIN(t, tlen), MAX(t, tlen), subt);
  /external/skia/src/core/
SkWriter32.cpp 155 const size_t MAX = sizeof(scratch);
160 if (n > MAX) {
161 n = MAX;
  /external/skia/src/effects/
SkAvoidXfermode.cpp 132 int MAX, mask;
136 MAX = 255;
139 MAX = 0;
145 d = MAX + (d ^ mask) - mask;
183 int MAX, mask;
187 MAX = 31;
190 MAX = 0;
196 d = MAX + (d ^ mask) - mask;
224 int MAX, mask;
228 MAX = 15
    [all...]
  /external/speex/libspeex/
_kiss_fft_guts.h 16 #define MAX(a,b) ((a)>(b) ? (a):(b))
133 # define KISS_FFT_COS(phase) floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase))))
134 # define KISS_FFT_SIN(phase) floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))
  /external/valgrind/main/drd/tests/
unit_bitmap.c 18 #ifndef MAX
19 #define MAX(x, y) ((x) > (y) ? (x) : (y))
207 DRD_(bm_clear_load)(bm1, i, i + MAX(1, ADDR_GRANULARITY));
210 DRD_(bm_clear_load)(bm1, i, i + MAX(2, ADDR_GRANULARITY));
213 DRD_(bm_clear_load)(bm1, i, i + MAX(4, ADDR_GRANULARITY));
216 DRD_(bm_clear_load)(bm1, i, i + MAX(8, ADDR_GRANULARITY));
223 DRD_(bm_clear_store)(bm1, i, i + MAX(1, ADDR_GRANULARITY));
226 DRD_(bm_clear_store)(bm1, i, i + MAX(2, ADDR_GRANULARITY));
229 DRD_(bm_clear_store)(bm1, i, i + MAX(4, ADDR_GRANULARITY));
232 DRD_(bm_clear_store)(bm1, i, i + MAX(8, ADDR_GRANULARITY))
    [all...]

Completed in 533 milliseconds

1 2 3 4