Searched refs:max (Results 276 - 300 of 2224) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/mesa/main/
H A Dversion.c88 static const int max = 100; local
227 ctx->VersionString = (char *) malloc(max);
229 _mesa_snprintf(ctx->VersionString, max,
242 static const int max = 100; local
259 ctx->VersionString = (char *) malloc(max);
261 _mesa_snprintf(ctx->VersionString, max,
274 static const int max = 100; local
292 ctx->VersionString = (char *) malloc(max);
294 _mesa_snprintf(ctx->VersionString, max,
/external/replicaisland/src/com/replica/replicaisland/
H A DAABoxCollisionVolume.java111 maxX = Math.max(getMaxX(), other.getMaxX());
112 minX = Math.max(getMinX(), other.getMinX());
113 maxY = Math.max(getMaxY(), other.getMaxY());
114 minY = Math.max(getMinY(), other.getMinY());
/external/skia/include/views/animated/
H A DSkProgressBarView.h20 //SkProgressBarView(int max);
27 void setMax(int max);
/external/v8/test/mjsunit/
H A Dconstant-folding-2.js120 assertEquals(10, Math.max(1, 10));
121 assertEquals(2.5, Math.max(1.5, 2.5));
122 assertEquals(Infinity, Math.max(Infinity, 0));
123 assertEquals("-Infinity", String(Math.max(-Infinity, -Infinity)));
124 assertEquals("Infinity", String(Math.max(Infinity, -Infinity)));
125 assertEquals("NaN", String(Math.max(NaN, 1)));
126 assertEquals("Infinity", String(1 / Math.max(0.0, 0.0)));
127 assertEquals("-Infinity", String(1 / Math.max(-0.0, -0.0)));
128 assertEquals("Infinity", String(1 / Math.max(0.0, -0.0)));
/external/icu/icu4c/source/test/intltest/
H A Dtzbdtest.cpp81 UDate max = min + SIX_MONTHS; local
82 while ((max - min) > INTERVAL) {
83 UDate mid = (min + max) / 2;
89 max = mid;
93 logln("Date After: " + showDate(max));
95 UDate maxdelta = max - expectedBoundary;
121 UDate max = min + SIX_MONTHS; local
127 if (tz->inDaylightTime(max, status) == startsInDST) {
128 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(max) + ") != " + (startsInDST ? "false" : "true"));
132 while ((max
386 UDate max = min + SIX_MONTHS; local
[all...]
H A Dtztest.h52 UDate min, UDate max);
58 UDate min, UDate max,
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_jpx_opj.cpp76 if (unsignedNbBytes > std::numeric_limits<OPJ_SIZE_T>::max() - srcData->offset) {
104 if (unsignedNbBytes > std::numeric_limits<OPJ_SIZE_T>::max()) {
161 int maxw, maxh, max, i, offset, upb; local
167 max = maxw * maxh;
171 d0 = r = FX_Alloc(int, (size_t)max);
172 d1 = g = FX_Alloc(int, (size_t)max);
173 d2 = b = FX_Alloc(int, (size_t)max);
174 for(i = 0; i < max; ++i) {
194 int maxw, maxh, max, offset, upb; local
201 max
246 int maxw, maxh, max, offset, upb; local
360 int max; local
512 unsigned int i, max; local
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRDFA.h37 const unichar *max; variable
74 @property const unichar *max; variable
/external/compiler-rt/test/asan/TestCases/
H A Dallocator_returns_null.cc25 volatile size_t size = std::numeric_limits<size_t>::max() - 10000;
39 volatile size_t kMaxSizeT = std::numeric_limits<size_t>::max();
/external/deqp/modules/internal/
H A DditTestLogTests.cpp62 << TestLog::Sample << std::numeric_limits<deInt64>::max() << std::numeric_limits<deInt64>::min() << -0.0f << TestLog::EndSample
63 << TestLog::Sample << 0x3355 << 0xf24 << std::numeric_limits<double>::max() << TestLog::EndSample;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalSnapshot.java81 int max = locals.getMaxSize();
86 for (int i = 0; i < max; i++) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
H A DjdtCompilerAdapter.jar ... .core.util.IMethodInfo[] methodInfos int i int max org.eclipse.jdt.core.util. ...
/external/eigen/bench/
H A Dbench_unrolling3 # gcc : CXX="g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000"
4 # icc : CXX="icpc -fast -no-inline-max-size -fno-exceptions"
5 CXX=${CXX-g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000} # default value
/external/eigen/lapack/
H A Deigenvalues.cpp23 else if(*lda<std::max(1,*n)) *info = -5;
24 else if((!query_size) && *lwork<std::max(1,3**n-1)) *info = -8;
/external/elfutils/src/libelf/
H A Delf_getscn.c66 if (idx < runp->max)
75 idx -= runp->max;
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
H A DUnsignedLongsTest.java41 // max value
63 UnsignedLongs.max();
70 assertEquals(LEAST, UnsignedLongs.max(LEAST));
71 assertEquals(GREATEST, UnsignedLongs.max(GREATEST));
72 assertEquals(0xff1a618b7f65ea12L, UnsignedLongs.max(
186 BigInteger max = BigInteger.ZERO.setBit(64).subtract(ONE);
190 String maxAsString = max.toString(radix);
191 assertEquals(max.longValue(), UnsignedLongs.parseUnsignedLong(maxAsString, radix));
195 BigInteger overflow = max.add(ONE);
/external/guava/guava-tests/test/com/google/common/primitives/
H A DUnsignedLongsTest.java44 // max value
66 UnsignedLongs.max();
73 assertEquals(LEAST, UnsignedLongs.max(LEAST));
74 assertEquals(GREATEST, UnsignedLongs.max(GREATEST));
75 assertEquals(0xff1a618b7f65ea12L, UnsignedLongs.max(
203 BigInteger max = BigInteger.ZERO.setBit(64).subtract(ONE);
207 String maxAsString = max.toString(radix);
208 assertEquals(max.longValue(), UnsignedLongs.parseUnsignedLong(maxAsString, radix));
212 BigInteger overflow = max.add(ONE);
/external/icu/icu4c/source/layout/
H A DIndicLayoutEngine.h111 * @param max - the number of characters in the input context
123 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
139 * @param max - the number of characters in the input context
154 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/
H A DPssmShadowUtil.java39 import static java.lang.Math.max;
79 return min(max(bbOcc.getZExtent() - bbOcc.getCenter().z, bbRecv.getZExtent() - bbRecv.getCenter().z), cam.getFrustumFar());
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
H A DSliceFunction.java24 import static java.lang.Math.max;
47 start += max(-start, length);
/external/libcxx/test/std/strings/string.conversions/
H A Dstoi.pass.cpp34 if (std::numeric_limits<long>::max() > std::numeric_limits<int>::max())
/external/libvncserver/x11vnc/misc/turbovnc/
H A Dturbojpeg.h40 #ifndef max
41 #define max(a,b) ((a)>(b)?(a):(b)) macro
/external/lldb/source/Utility/
H A DRange.cpp65 m_low = std::max(m_low,other.m_low);
73 m_high = std::max(m_high,other.m_high);
/external/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp38 unsigned LineStart = std::numeric_limits<unsigned>::max();
44 LineEnd = std::max(LineEnd, CR.LineEnd);
/external/pdfium/third_party/base/numerics/
H A Dsafe_conversions.h50 return std::numeric_limits<Dst>::max();
55 return std::numeric_limits<Dst>::max();

Completed in 3036 milliseconds

<<11121314151617181920>>