HomeSort by relevance Sort by last modified time
    Searched refs:max (Results 26 - 50 of 2420) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/animator/
SkDisplayRandom.h 29 #ifdef max
30 #undef max macro
44 SkScalar max; member in class:SkDisplayRandom
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
post_proc.h 35 #define UPDATE_PV_MAXPV_MIN(p,max,min) if ((p) > max) max=(p); else if ((p) < min) min = (p);
  /system/extras/tests/schedtest/
schedtest.c 28 long max = 0; local
39 if (usec > max) max = usec;
42 printf("max %ld\tavg %ld\n", max, avg);
43 max = 0;
  /dalvik/dx/src/com/android/dx/merge/
SortableType.java 73 int max; local
75 max = 0; // this is Object.class or an interface
79 max = 1; // unknown, so assume it's a root.
83 max = sortableSupertype.depth;
90 max = Math.max(max, 1); // unknown, so assume it's a root.
94 max = Math.max(max, implemented.depth)
    [all...]
  /external/chromium/base/
rand_util.cc 16 int RandInt(int min, int max) {
17 DCHECK(min <= max);
19 uint64 range = static_cast<uint64>(max) - min + 1;
21 DCHECK(result >= min && result <= max);
39 uint64 RandGenerator(uint64 max) {
40 DCHECK_GT(max, 0ULL);
41 return base::RandUint64() % max;
  /libcore/luni/src/test/java/libcore/java/lang/
ByteTest.java 23 final byte max = Byte.MAX_VALUE;
24 assertTrue(Byte.compare(max, max) == 0);
27 assertTrue(Byte.compare(max, zero) > 0);
28 assertTrue(Byte.compare(max, min) > 0);
29 assertTrue(Byte.compare(zero, max) < 0);
32 assertTrue(Byte.compare(min, max) < 0);
IntegerTest.java 23 final int max = Integer.MAX_VALUE; local
24 assertTrue(Integer.compare(max, max) == 0);
27 assertTrue(Integer.compare(max, zero) > 0);
28 assertTrue(Integer.compare(max, min) > 0);
29 assertTrue(Integer.compare(zero, max) < 0);
32 assertTrue(Integer.compare(min, max) < 0);
LongTest.java 23 final long max = Long.MAX_VALUE; local
24 assertTrue(Long.compare(max, max) == 0);
27 assertTrue(Long.compare(max, zero) > 0);
28 assertTrue(Long.compare(max, min) > 0);
29 assertTrue(Long.compare(zero, max) < 0);
32 assertTrue(Long.compare(min, max) < 0);
ShortTest.java 23 final short max = Short.MAX_VALUE; local
24 assertTrue(Short.compare(max, max) == 0);
27 assertTrue(Short.compare(max, zero) > 0);
28 assertTrue(Short.compare(max, min) > 0);
29 assertTrue(Short.compare(zero, max) < 0);
32 assertTrue(Short.compare(min, max) < 0);
  /system/core/nexus/
DhcpEvent.cpp 24 char *DhcpEvent::toString(int val, char *buffer, int max) {
26 strncpy(buffer, "UNKNOWN", max);
28 strncpy(buffer, "STOP", max);
30 strncpy(buffer, "RENEW", max);
32 strncpy(buffer, "RELEASE", max);
34 strncpy(buffer, "TIMEOUT", max);
36 strncpy(buffer, "(internal error)", max);
DhcpState.cpp 24 char *DhcpState::toString(int val, char *buffer, int max) {
26 strncpy(buffer, "INIT", max);
28 strncpy(buffer, "DISCOVERING", max);
30 strncpy(buffer, "REQUESTING", max);
32 strncpy(buffer, "BOUND", max);
34 strncpy(buffer, "RENEWING", max);
36 strncpy(buffer, "REBINDING", max);
38 strncpy(buffer, "REBOOT", max);
40 strncpy(buffer, "RENEW_REQUESTED", max);
42 strncpy(buffer, "INIT_IPV4LL", max);
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.11.js 24 ECMA Section: 15.8.2.11 Math.max(x, y)
41 var TITLE = "Math.max(x, y)";
53 array[item++] = new TestCase( SECTION, "Math.max.length", 2, Math.max.length );
55 array[item++] = new TestCase( SECTION, "Math.max()", -Infinity, Math.max() );
56 array[item++] = new TestCase( SECTION, "Math.max(void 0, 1)", Number.NaN, Math.max( void 0, 1 ) );
57 array[item++] = new TestCase( SECTION, "Math.max(void 0, void 0)", Number.NaN, Math.max( void 0, void 0 ) )
    [all...]
  /system/core/toolbox/
id.c 32 int n, max; local
34 max = getgroups(64, list);
35 if (max < 0) max = 0;
41 if (max) {
44 for(n = 1; n < max; n++) {
  /frameworks/base/graphics/java/android/graphics/
TableMaskFilter.java 35 public static TableMaskFilter CreateClipTable(int min, int max) {
36 return new TableMaskFilter(nativeNewClip(min, max));
44 private static native int nativeNewClip(int min, int max);
  /frameworks/base/media/libstagefright/codecs/aacdec/
unpack_idx.h 92 Int *max);
98 Int *max);
104 Int *max);
imdct_fxp.cpp 41 max = Maximum value inside input vector "data_quant"
273 Int32 max)
298 if (max != 0)
336 shift1 = pv_normalize(max) - 1; /* -1 to leave room for addition */
338 max = 0;
363 max |= (temp1 >> 31) ^ temp1;
364 max |= (temp2 >> 31) ^ temp2;
386 max |= (temp1 >> 31) ^ temp1;
387 max |= (temp2 >> 31) ^ temp2;
414 max |= (temp1 >> 31) ^ temp1
    [all...]
inv_long_complex_rot.h 90 Int32 max);
inv_short_complex_rot.h 83 Int32 max);
pulse_nc.h 26 Description: Pass in max as input argument.
93 Int *max);
  /external/clang/utils/ABITest/return-types-32/
Makefile 7 TESTARGS += --max-args 0
  /external/clang/utils/ABITest/return-types-64/
Makefile 7 TESTARGS += --max-args 0
  /external/clang/utils/ABITest/single-args-32/
Makefile 7 TESTARGS += --no-function-return --max-args 1
  /external/clang/utils/ABITest/single-args-64/
Makefile 13 TESTARGS += --no-function-return --max-args 1
  /external/iptables/include/linux/netfilter/
xt_length.h 7 __u16 min, max; member in struct:xt_length_info
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
gmed_n.cpp 131 Word16 max;
143 max = -32767;
146 if (sub (tmp2[j], max) >= 0)
148 max = tmp2[j];
189 register Word16 max; local
201 max = -32767;
204 if (*(tmp2 + j) >= max)
206 max = *(tmp2 + j);

Completed in 330 milliseconds

12 3 4 5 6 7 8 91011>>