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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
enum2.c 3 enum e { MAX };
7 v = MAX;
  /external/clang/test/SemaCXX/
constexpr-depth.cpp 7 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);
constexpr-steps.cpp 16 static_assert(steps((MAX - 4)), ""); // ok
17 static_assert(steps((MAX - 3)), ""); // expected-error {{constant}} expected-note{{call}}
operator-arrow-depth.cpp 11 #if MAX != 2
21 A<MAX/2> good;
24 B<MAX/2 + 1> bad;
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/fragment-shader/
frag-max.sh 8 MAX OUT[0], IN[0], IMM[0]
  /external/mesa3d/src/gallium/tests/graw/fragment-shader/
frag-max.sh 8 MAX OUT[0], IN[0], IMM[0]
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 26 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/(C4/C3));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/vertex-shader/
vert-max.sh 11 MAX OUT[1], IN[1], IMM[0]
  /external/libpng/contrib/gregbook/
readpng.h 61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b))
  /external/mesa3d/src/gallium/tests/graw/vertex-shader/
vert-max.sh 11 MAX OUT[1], IN[1], IMM[0]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACRate.txt 8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_1.pcm > $LOGG
10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_3.pcm >> $LOGG
12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_5.pcm >> $LOGG
14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_7.pcm >> $LOGG
16 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_11.pcm >> $LOGG
18 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_13.pcm >> $LOGG
20 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_15.pcm >> $LOGG
22 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_17.pcm >> $LOGG
  /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/chromium_org/v8/test/mjsunit/
strict-mode-opt.js 31 var MAX = 5;
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_2 = "value";
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 11 MAX = [5, 6].freeze
26 dfa.max.should == DFASubclass::MAX
  /external/compiler-rt/lib/builtins/
mulodi4.c 26 const di_int MAX = ~MIN;
49 if (abs_a > MAX / abs_b)
mulosi4.c 26 const si_int MAX = ~MIN;
49 if (abs_a > MAX / abs_b)
muloti4.c 28 const ti_int MAX = ~MIN;
51 if (abs_a > MAX / abs_b)
mulvdi3.c 26 const di_int MAX = ~MIN;
47 if (abs_a > MAX / abs_b)
mulvsi3.c 26 const si_int MAX = ~MIN;
47 if (abs_a > MAX / abs_b)
mulvti3.c 28 const ti_int MAX = ~MIN;
49 if (abs_a > MAX / abs_b)
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
PSNRComparer.java 26 private final float MAX = 255;
73 float fraction = (MAX * MAX) / MSE;
  /bionic/libc/include/sys/
param.h 44 /* Macros for min/max. */
46 #define MAX(a,b) (((a)>(b))?(a):(b))
  /development/ndk/platforms/android-L/include/sys/
param.h 44 /* Macros for min/max. */
46 #define MAX(a,b) (((a)>(b))?(a):(b))
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
common.h 26 #define MAX(x, y) (((x) > (y)) ? (x) : (y))
  /external/chromium_org/third_party/sqlite/src/tool/
split-sqlite3c.tcl 11 set MAX 32768 ;# Maximum number of lines per file.
66 if {$n+$N>=$MAX} {

Completed in 348 milliseconds

1 2 3 4 5 6 7 8 91011>>