Home
last modified time | relevance | path

Searched refs:MAX (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/external/chromium_org/v8/test/mjsunit/
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);
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_2 = "value"; }
92 for (var i = 0; i <= MAX; i ++) {
[all …]
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
DTimeUnit.java26 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } in toNanos()
37 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); } in toNanos()
38 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); } in toMicros()
48 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); } in toNanos()
49 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); } in toMicros()
50 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); } in toMillis()
59 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); } in toNanos()
60 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); } in toMicros()
61 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2)); } in toMillis()
62 public long toSeconds(long d) { return x(d, C4/C3, MAX/(C4/C3)); } in toSeconds()
[all …]
/external/llvm/test/CodeGen/X86/
Dmisched-ilp.ll1 …e=x86_64-apple-macosx -mcpu=nocona -enable-misched -misched=ilpmax | FileCheck -check-prefix=MAX %s
6 ; MAX: addss
7 ; MAX: addss
8 ; MAX: addss
9 ; MAX: subss
10 ; MAX: addss
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
DruniSACRate.txt8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.…
16 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
18 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
20 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
22 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/longspeech.pcm $…
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/QA/
DruniSACRate.txt8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.…
16 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
18 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
20 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
22 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/longspeech.pcm $…
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DAttributesImplSerializer.java57 private static final int MAX = 12; field in AttributesImplSerializer
63 private static final int MAXMinus1 = MAX - 1;
75 if (super.getLength() < MAX) in getIndex()
121 switchOverToHash(MAX); in addAttribute()
175 if (MAX <= len) in clear()
201 if (MAX <= numAtts) in setAttributes()
217 if (super.getLength() < MAX) in getIndex()
/external/skia/src/effects/
DSkAvoidXfermode.cpp84 int MAX, mask; in xfer32() local
88 MAX = 255; in xfer32()
91 MAX = 0; in xfer32()
97 d = MAX + (d ^ mask) - mask; in xfer32()
133 int MAX, mask; in xfer16() local
137 MAX = 31; in xfer16()
140 MAX = 0; in xfer16()
146 d = MAX + (d ^ mask) - mask; in xfer16()
/external/chromium_org/third_party/skia/src/effects/
DSkAvoidXfermode.cpp90 int MAX, mask; in xfer32() local
94 MAX = 255; in xfer32()
97 MAX = 0; in xfer32()
103 d = MAX + (d ^ mask) - mask; in xfer32()
139 int MAX, mask; in xfer16() local
143 MAX = 31; in xfer16()
146 MAX = 0; in xfer16()
152 d = MAX + (d ^ mask) - mask; in xfer16()
/external/clang/test/SemaCXX/
Doperator-arrow-depth.cpp11 #if MAX != 2
21 A<MAX/2> good;
24 B<MAX/2 + 1> bad;
Dconstexpr-steps.cpp16 static_assert(steps((MAX - 4)), ""); // ok
17 static_assert(steps((MAX - 3)), ""); // expected-error {{constant}} expected-note{{call}}
Dconstexpr-depth.cpp7 constexpr int kBad = depth(MAX + 1); // expected-error {{must be initialized by a constant expressi…
8 constexpr int kGood = depth(MAX);
/external/valgrind/main/drd/tests/
Dunit_bitmap.c20 #ifndef MAX
21 #define MAX(x, y) ((x) > (y) ? (x) : (y)) macro
217 DRD_(bm_clear_load)(bm1, i, i + MAX(1, ADDR_GRANULARITY)); in bm_test3()
220 DRD_(bm_clear_load)(bm1, i, i + MAX(2, ADDR_GRANULARITY)); in bm_test3()
223 DRD_(bm_clear_load)(bm1, i, i + MAX(4, ADDR_GRANULARITY)); in bm_test3()
226 DRD_(bm_clear_load)(bm1, i, i + MAX(8, ADDR_GRANULARITY)); in bm_test3()
233 DRD_(bm_clear_store)(bm1, i, i + MAX(1, ADDR_GRANULARITY)); in bm_test3()
236 DRD_(bm_clear_store)(bm1, i, i + MAX(2, ADDR_GRANULARITY)); in bm_test3()
239 DRD_(bm_clear_store)(bm1, i, i + MAX(4, ADDR_GRANULARITY)); in bm_test3()
242 DRD_(bm_clear_store)(bm1, i, i + MAX(8, ADDR_GRANULARITY)); in bm_test3()
[all …]
/external/chromium_org/third_party/harfbuzz-ng/src/
Dhb-buffer-serialize.cc133 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_json()
136 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_json()
194 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_text()
197 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "=%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_text()
203 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "@%d,%d", pos[i].x_offset, pos[i].y_offset)); in _hb_buffer_serialize_glyphs_text()
206 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%d", pos[i].x_advance)); in _hb_buffer_serialize_glyphs_text()
208 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance)); in _hb_buffer_serialize_glyphs_text()
/external/harfbuzz_ng/src/
Dhb-buffer-serialize.cc133 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_json()
136 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_json()
194 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_text()
197 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "=%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_text()
203 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "@%d,%d", pos[i].x_offset, pos[i].y_offset)); in _hb_buffer_serialize_glyphs_text()
206 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%d", pos[i].x_advance)); in _hb_buffer_serialize_glyphs_text()
208 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance)); in _hb_buffer_serialize_glyphs_text()
/external/clang/test/CodeGen/
Denum2.c3 enum e { MAX }; enumerator
7 v = MAX; in foo()
/external/opencv/cv/src/
Dcvstereobm.cpp135 const uchar* top = sptr + srcstep*MAX(y-wsz2-1,0); in icvPrefilter()
137 const uchar* prev = sptr + srcstep*MAX(y-1,0); in icvPrefilter()
186 int lofs = MAX(ndisp - 1 + mindisp, 0); in icvFindStereoCorrespondenceBM_SSE2()
224 lptr = lptr0 + MIN(MAX(x, -lofs), width-lofs-1) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
225 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
256 lptr_sub = lptr0 + MIN(MAX(x0, -lofs), width-1-lofs) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
257 lptr = lptr0 + MIN(MAX(x1, -lofs), width-1-lofs) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
258 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
306 hsad_sub = hsad0 + MAX(y - wsz2 - 1, -dy0)*ndisp; in icvFindStereoCorrespondenceBM_SSE2()
394 int lofs = MAX(ndisp - 1 + mindisp, 0); in icvFindStereoCorrespondenceBM()
[all …]
/external/valgrind/main/memcheck/tests/
Dbrk2.c4 #define MAX 3000 macro
13 for (i=0; i<MAX; i++) { in main()
/external/icu/icu4c/source/test/intltest/
Dmnkytst.cpp26 #ifndef MAX
27 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
86 source.extract(MIN(s, slen), MAX(s, slen), subs); in TestCollationKey()
87 source.extract(MIN(t, tlen), MAX(t, tlen), subt); in TestCollationKey()
161 source.extract(MIN(s, slen), MAX(s, slen), subs); in TestCompare()
162 source.extract(MIN(t, tlen), MAX(t, tlen), subt); in TestCompare()
/external/chromium_org/third_party/icu/source/test/intltest/
Dmnkytst.cpp26 #ifndef MAX
27 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
86 source.extract(MIN(s, slen), MAX(s, slen), subs); in TestCollationKey()
87 source.extract(MIN(t, tlen), MAX(t, tlen), subt); in TestCollationKey()
161 source.extract(MIN(s, slen), MAX(s, slen), subs); in TestCompare()
162 source.extract(MIN(t, tlen), MAX(t, tlen), subt); in TestCompare()
/external/valgrind/main/massif/tests/
Dpages_as_heap.c4 #define MAX 20000 macro
18 for (i=0; i<MAX; i++) { in main()
/external/icu/icu4c/source/i18n/
Dquant.cpp105 } else if (maxCount == MAX) { in toPattern()
109 } else if (minCount == 1 && maxCount == MAX) { in toPattern()
115 if (maxCount != MAX) { in toPattern()
/external/chromium_org/third_party/icu/source/i18n/
Dquant.cpp105 } else if (maxCount == MAX) { in toPattern()
109 } else if (minCount == 1 && maxCount == MAX) { in toPattern()
115 if (maxCount != MAX) { in toPattern()
/external/libpng/contrib/gregbook/
Dreadpng.h61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b)) macro
/external/compiler-rt/lib/builtins/
Dmulvdi3.c26 const di_int MAX = ~MIN; in __mulvdi3() local
47 if (abs_a > MAX / abs_b) in __mulvdi3()
Dmulosi4.c26 const si_int MAX = ~MIN; in __mulosi4() local
49 if (abs_a > MAX / abs_b) in __mulosi4()

12345678910>>...16