Searched refs:MAX (Results 1 - 25 of 247) sorted by relevance

12345678910

/external/clang/test/CodeGen/
H A Denum2.c3 enum e { MAX }; enumerator in enum:e
7 v = MAX;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-enum.cpp4 enum index { MAX }; enumerator in enum:index
7 v = MAX;
/external/v8/test/mjsunit/
H A Dstrict-mode-opt.js31 var MAX = 5; variable
38 if (n == MAX) { undefined_variable_strict = "value"; }
46 for (var i = 0; i <= MAX; i ++) {
48 if (i == MAX - 1) %OptimizeFunctionOnNextCall(nonstrictCallStrict);
52 assertEquals(MAX, i);
56 fail("ReferenceError after MAX iterations", "no exception");
63 if (n == MAX) { undefined_variable_nonstrict = "The nonstrict value"; }
72 for (var i = 0; i <= MAX; i ++) {
74 if (i == MAX - 1) %OptimizeFunctionOnNextCall(nonstrictCallStrict);
88 if (n == MAX) { undefined_variable_strict_
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-depth.cpp7 constexpr int kBad = depth(MAX + 1); // expected-error {{must be initialized by a constant expression}} expected-note {{in call to 'depth(}}
8 constexpr int kGood = depth(MAX);
/external/valgrind/main/memcheck/tests/
H A Dbrk2.c4 #define MAX 3000 macro
13 for (i=0; i<MAX; i++) {
/external/dhcpcd/
H A Dconfig.h12 #ifndef MAX
13 #define MAX(a,b) ((a) >= (b) ? (a) : (b)) macro
/external/dbus/tools/
H A Ddbus-launch.h37 #undef MAX macro
38 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java26 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
37 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
38 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); }
48 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); }
49 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); }
50 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); }
59 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); }
60 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); }
61 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2)); }
62 public long toSeconds(long d) { return x(d, C4/C3, MAX/(C
101 static final long MAX = Long.MAX_VALUE; field in class:TimeUnit
[all...]
/external/libpng/contrib/gregbook/
H A Dreadpng.h61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b)) macro
H A Dreadpng2.h61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b)) macro
H A Dwritepng.h61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b)) macro
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DAttributesImplSerializer.java57 private static final int MAX = 12; field in class:AttributesImplSerializer
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/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-dfa.rb11 MAX = [5, 6].freeze
26 dfa.max.should == DFASubclass::MAX
/external/compiler-rt/lib/
H A Dmulodi4.c26 const di_int MAX = ~MIN; local
49 if (abs_a > MAX / abs_b)
H A Dmulosi4.c26 const si_int MAX = ~MIN; local
49 if (abs_a > MAX / abs_b)
H A Dmuloti4.c28 const ti_int MAX = ~MIN; local
51 if (abs_a > MAX / abs_b)
H A Dmulvdi3.c26 const di_int MAX = ~MIN; local
47 if (abs_a > MAX / abs_b)
H A Dmulvsi3.c26 const si_int MAX = ~MIN; local
47 if (abs_a > MAX / abs_b)
H A Dmulvti3.c28 const ti_int MAX = ~MIN; local
49 if (abs_a > MAX / abs_b)
/external/skia/src/effects/
H A DSkAvoidXfermode.cpp114 int MAX, mask; local
118 MAX = 255;
121 MAX = 0;
127 d = MAX + (d ^ mask) - mask;
165 int MAX, mask; local
169 MAX = 31;
172 MAX = 0;
178 d = MAX + (d ^ mask) - mask;
206 int MAX, mask; local
210 MAX
[all...]
/external/elfutils/bionic-fixup/
H A DAndroidFixup.h27 #ifndef MAX
28 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
/external/libvorbis/test/
H A Dtest.c27 #define MAX(a,b) ((a) > (b) ? (a) : (b)) macro
87 max_abs = MAX (max_abs, temp);
/external/srec/srec/include/
H A Dall_defs.h92 #ifndef MAX
93 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y)) macro
/external/valgrind/main/drd/tests/
H A Dunit_bitmap.c18 #ifndef MAX
19 #define MAX(x, y) ((x) > (y) ? (x) : (y)) macro
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(
[all...]
/external/icu4c/i18n/
H A Dquant.cpp102 } else if (maxCount == MAX) {
106 } else if (minCount == 1 && maxCount == MAX) {
112 if (maxCount != MAX) {

Completed in 725 milliseconds

12345678910