HomeSort by relevance Sort by last modified time
    Searched defs:iMax (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/opencv3/3rdparty/openexr/IlmImf/
b44ExpLogTable.cpp 77 const int iMax = (1 << 16);
83 for (int i = 0; i < iMax; i++)
101 if (i < iMax - 1)
112 for (int i = 0; i < iMax; i++)
128 if (i < iMax - 1)
  /external/opencv3/3rdparty/openexr/Half/
toFloat.cpp 147 const int iMax = (1 << 16);
149 for (int i = 0; i < iMax; i++)
157 if (i < iMax - 1)
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh44.cpp 6 static unsigned int iMax;
12 if (iCounter++ == iMax)
30 iMax = 1;
  /ndk/tests/device/test-stlport_static-exception/jni/
eh44.cpp 6 static unsigned int iMax;
12 if (iCounter++ == iMax)
30 iMax = 1;
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
Sphere.java 54 int iMax = nSlices + 1;
55 int nVertices = iMax * iMax;
82 float[] vLineBuffer = new float[iMax * 5];
83 for (int i = 0; i < iMax; i++) {
84 for (int j = 0; j < iMax; j++) {
115 indexBuffer[index++] = (short) (i * iMax + j);
116 indexBuffer[index++] = (short) (i1 * iMax + j);
117 indexBuffer[index++] = (short) (i1 * iMax + j1);
118 indexBuffer[index++] = (short) (i * iMax + j)
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDoubleArray.java 215 int iMax = length() - 1;
216 if (iMax == -1) {
221 StringBuilder b = new StringBuilder((17 + 2) * (iMax + 1));
225 if (i == iMax) {
  /external/parameter-framework/upstream/parameter/
FixedPointParameterType.cpp 163 int32_t iMax = getMaxValue<uint32_t>();
164 int32_t iMin = -iMax - 1;
176 stream << ", 0x" << makeEncodable(iMax);
180 stream << iMin << ", " << iMax;
  /external/valgrind/coregrind/
m_rangemap.c 106 Word iMin, iMax, i;
108 iMax = find(rm, key_max);
109 for (i = iMin; i <= iMax; i++) {
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicReferenceArray.java 271 int iMax = array.length - 1;
272 if (iMax == -1)
279 if (i == iMax)
AtomicIntegerArray.java 321 int iMax = array.length - 1;
322 if (iMax == -1)
329 if (i == iMax)
AtomicLongArray.java 320 int iMax = array.length - 1;
321 if (iMax == -1)
328 if (i == iMax)
  /packages/apps/Gallery2/jni/filters/
hsv.c 35 int iMin,iMax,chroma;
48 iMax = MAX (ri, bi);
51 iMax = MAX (gi, bi);
55 chroma = iMax - iMin;
57 rv = (short)( iMax << ABITS);
63 rs = (short)((k1*chroma)/iMax);
69 if ( ri == iMax ) {
72 } else if (gi == iMax)
74 else // (bi == iMax )
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 262 int iMax = steps.size() - 1;
263 final StepInterpolator sMax = steps.get(iMax);
274 index = iMax;
280 while (iMax - iMin > 5) {
286 iMax = index;
298 final int iMed = (iMin + iMax) / 2;
315 final double iLagrange = ((dt2 * dt3 * d23) * iMax -
323 final int low = FastMath.max(iMin + 1, (9 * iMin + iMax) / 10);
324 final int high = FastMath.min(iMax - 1, (iMin + 9 * iMax) / 10)
    [all...]
  /external/opencv/cv/src/
cvthresh.cpp 120 int iThresh, iMax;
123 v.f = maxval; iMax = v.i;
136 idst[j] = ((CV_TOGGLE_FLT(temp) <= iThresh) - 1) & iMax;
147 idst[j] = ((CV_TOGGLE_FLT(temp) > iThresh) - 1) & iMax;
  /external/opencv3/modules/videostab/src/
motion_stabilizing.cpp 111 int iMax = std::min(idx + radius_, range.second);
112 for (int i = iMin; i <= iMax; ++i)
  /prebuilts/misc/windows/sdl2/test/
testautomation_audio.c 65 int i, iMax;
73 iMax = SDL_GetNumAudioDrivers();
75 SDLTest_AssertCheck(iMax > 0, "Validate number of audio drivers; expected: >0 got: %d", iMax);
76 for (i = 0; i < iMax; i++) {
121 int i, iMax, j;
130 iMax = SDL_GetNumAudioDrivers();
132 SDLTest_AssertCheck(iMax > 0, "Validate number of audio drivers; expected: >0 got: %d", iMax);
133 for (i = 0; i < iMax; i++)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Arrays.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpDeviceIndex.java 306 int iMax = results.buckets.length - 1;
307 while (iMax >= iMin) {
308 int iMid = (iMax + iMin) / 2;
313 iMax = iMid - 1;
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_document_datamerger_imp.cpp 23 int32_t& iMax,
29 return occur.GetOccurInfo(iMin, iMax, iInit);
644 int32_t iMin, iMax, iInit;
646 XFA_GetOccurInfo(pTemplateNodeOccur, iMin, iMax, iInit) && iMax == 0) {
801 int32_t iMax = 1, iInit = 1, iMin = 1;
803 XFA_GetOccurInfo(pOccurNode, iMin, iMax, iInit);
    [all...]
xfa_layout_itemlayout.cpp     [all...]
xfa_layout_pagemgr_new.cpp     [all...]
xfa_object_imp.cpp     [all...]
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 968 int iMax = strValue.GetLength();
969 if (iDec2 > iMax) {
970 for (int iNum = 0; iNum <= iDec2 - iMax; iNum++) {
973 iMax = iDec2 + 1;
977 if (iDec2 < iMax) {
980 iMax++;
983 iMax++;
998 iMax++;
    [all...]
  /external/pdfium/xfa/src/fgas/src/layout/
fx_rtfbreak.cpp     [all...]
  /external/skia/src/pathops/
SkOpAngle.cpp 189 int iMax = SkPathOpsVerbToPoints(testVerb);
192 for (int index = 1; index <= iMax; ++index) {
    [all...]

Completed in 943 milliseconds

1 2 3