Home
last modified time | relevance | path

Searched refs:iMax (Results 1 – 9 of 9) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DContinuousOutputModel.java262 int iMax = steps.size() - 1; in setInterpolatedTime() local
263 final StepInterpolator sMax = steps.get(iMax); in setInterpolatedTime()
274 index = iMax; in setInterpolatedTime()
280 while (iMax - iMin > 5) { in setInterpolatedTime()
286 iMax = index; in setInterpolatedTime()
298 final int iMed = (iMin + iMax) / 2; in setInterpolatedTime()
315 final double iLagrange = ((dt2 * dt3 * d23) * iMax - in setInterpolatedTime()
323 final int low = FastMath.max(iMin + 1, (9 * iMin + iMax) / 10); in setInterpolatedTime()
324 final int high = FastMath.min(iMax - 1, (iMin + 9 * iMax) / 10); in setInterpolatedTime()
335 while ((index <= iMax) && (locatePoint(time, steps.get(index)) > 0)) { in setInterpolatedTime()
/external/guava/guava/src/com/google/common/util/concurrent/
DAtomicDoubleArray.java215 int iMax = length() - 1; in toString() local
216 if (iMax == -1) { in toString()
221 StringBuilder b = new StringBuilder((17 + 2) * (iMax + 1)); in toString()
225 if (i == iMax) { in toString()
/external/parameter-framework/parameter/
DFixedPointParameterType.cpp158 int32_t iMax = getMaxValue<uint32_t>(); in setOutOfRangeError() local
159 int32_t iMin = -iMax - 1; in setOutOfRangeError()
170 std::setw(getSize() * 2) << std::setfill('0') << makeEncodable(iMax); in setOutOfRangeError()
174 strStream << iMin << ", " << iMax; in setOutOfRangeError()
/external/valgrind/coregrind/
Dm_rangemap.c106 Word iMin, iMax, i; in VG_() local
108 iMax = find(rm, key_max); in VG_()
109 for (i = iMin; i <= iMax; i++) { in VG_()
/external/pdfium/fpdfsdk/src/javascript/
DPublicMethods.cpp1122 int iMax = strValue.GetLength(); in AFNumber_Format() local
1123 if (iDec2 > iMax) in AFNumber_Format()
1125 for (int iNum = 0;iNum <= iDec2 - iMax ;iNum++) in AFNumber_Format()
1129 iMax = iDec2+1; in AFNumber_Format()
1133 if (iDec2 < iMax) in AFNumber_Format()
1138 iMax++; in AFNumber_Format()
1143 iMax++; in AFNumber_Format()
1163 iMax++; in AFNumber_Format()
1445 int iMax = strValue.GetLength(); in AFPercent_Format() local
1446 if (iDec2 > iMax) in AFPercent_Format()
[all …]
/external/opencv/cv/src/
Dcvthresh.cpp120 int iThresh, iMax; in icvThresh_32f_C1R() local
123 v.f = maxval; iMax = v.i; in icvThresh_32f_C1R()
136 idst[j] = ((CV_TOGGLE_FLT(temp) <= iThresh) - 1) & iMax; in icvThresh_32f_C1R()
147 idst[j] = ((CV_TOGGLE_FLT(temp) > iThresh) - 1) & iMax; in icvThresh_32f_C1R()
/external/skia/src/pathops/
DSkOpAngle.cpp190 int iMax = SkPathOpsVerbToPoints(testVerb); in allOnOneSide() local
193 for (int index = 1; index <= iMax; ++index) { in allOnOneSide()
/external/sqlite/dist/
Dsqlite3.c51484 Pgno iMax = pWal->hdr.mxFrame;
51493 ALWAYS(rc==SQLITE_OK) && iFrame<=iMax;
51510 if( iMax!=pWal->hdr.mxFrame ) walCleanupHash(pWal);
137537 sqlite3_int64 iMax = 0; /* Largest docid for all iterators */
137543 if( a[i].bIgnore==0 && (bMaxSet==0 || DOCID_CMP(iMax, a[i].iDocid)<0) ){
137544 iMax = a[i].iDocid;
137554 && a[i].bIgnore==0 && DOCID_CMP(a[i].iDocid, iMax)<0
137557 if( DOCID_CMP(a[i].iDocid, iMax)>0 ){
137558 iMax = a[i].iDocid;
137584 pDL->iDocid = iMax;
/external/sqlite/dist/orig/
Dsqlite3.c51466 Pgno iMax = pWal->hdr.mxFrame;
51475 ALWAYS(rc==SQLITE_OK) && iFrame<=iMax;
51492 if( iMax!=pWal->hdr.mxFrame ) walCleanupHash(pWal);
137507 sqlite3_int64 iMax = 0; /* Largest docid for all iterators */
137513 if( a[i].bIgnore==0 && (bMaxSet==0 || DOCID_CMP(iMax, a[i].iDocid)<0) ){
137514 iMax = a[i].iDocid;
137524 && a[i].bIgnore==0 && DOCID_CMP(a[i].iDocid, iMax)<0
137527 if( DOCID_CMP(a[i].iDocid, iMax)>0 ){
137528 iMax = a[i].iDocid;
137554 pDL->iDocid = iMax;