Home
last modified time | relevance | path

Searched refs:iEnd (Results 1 – 23 of 23) sorted by relevance

/external/libxaac/decoder/drc_src/
Dimpd_drc_process.c49 WORD32 iEnd, iStart; in impd_apply_gains_and_add() local
97 iEnd = 0; in impd_apply_gains_and_add()
99 while (iEnd < ia_drc_params_struct->drc_frame_size) { in impd_apply_gains_and_add()
103 while ((iEnd < ia_drc_params_struct->drc_frame_size) && in impd_apply_gains_and_add()
104 (fabs(lpcm_gains[iEnd] - drc_gain_last) <= gainThr)) in impd_apply_gains_and_add()
105 iEnd++; in impd_apply_gains_and_add()
107 iEnd = ia_drc_params_struct->drc_frame_size; in impd_apply_gains_and_add()
119 &deinterleaved_audio[signalIndex][0], iStart, iEnd); in impd_apply_gains_and_add()
122 for (i = iStart; i < iEnd; i++) { in impd_apply_gains_and_add()
128 if ((iEnd < ia_drc_params_struct->drc_frame_size) && in impd_apply_gains_and_add()
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
DBase64Coder.java164 int iEnd = iOff + iLen; in encode() local
166 while (ip < iEnd) { in encode()
168 int i1 = ip < iEnd ? in[ip++] & 0xff : 0; in encode()
169 int i2 = ip < iEnd ? in[ip++] & 0xff : 0; in encode()
274 int iEnd = iOff + iLen;
276 while (ip < iEnd) {
279 int i2 = ip < iEnd ? in[ip++] : 'A';
280 int i3 = ip < iEnd ? in[ip++] : 'A';
/external/sonivox/jet_tools/JetCreator/
DJetSegGraph.py58 self.iEnd = 0
73 self.iEnd = step * iEndM
76 self.iEnd = self.iEnd + ((step / 4.0) * (self.EndMbt[1]-1))
81 self.iEnd = self.iEnd + ((pctTickOfBeat * (step / 4.0)))
83 self.iWidth = self.iEnd - self.iStart
179 …if pt[0] >= Marker.iStart and pt[0] <= Marker.iEnd and pt[1] >= Marker.iTop and pt[1] <= Marker.iT…
244 …if Marker.iStart <= Marker1.iStart and Marker.iEnd <= Marker1.iEnd and Marker.iEnd >= Marker1.iSta…
248 …e and Marker.iStart >= Marker1.iStart and Marker.iEnd >= Marker1.iEnd and Marker.iStart <= Marker1…
269 k = ((Marker.iStart + Marker.iEnd) / 2) - (width/2) + self.iEdges
/external/pdfium/fxjs/
Dcjs_util.cpp219 int iEnd; in printd() local
220 while ((iEnd = cFormat.find(TbConvertTable[i].lpszJSMark, iStart)) != -1) { in printd()
221 cFormat.replace(iEnd, wcslen(TbConvertTable[i].lpszJSMark), in printd()
223 iStart = iEnd; in printd()
238 int iEnd; in printd() local
239 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) { in printd()
240 if (iEnd > 0) { in printd()
241 if (cFormat[iEnd - 1] == L'%') { in printd()
242 iStart = iEnd + 1; in printd()
246 cFormat.replace(iEnd, wcslen(cTableAd[i].lpszJSMark), in printd()
[all …]
Dcjs_publicmethods.cpp852 int iEnd = mark_pos.value_or(strValue.GetLength()); in AFPercent_Format() local
854 for (int i = iEnd - 3; i > iStop; i -= 3) in AFPercent_Format()
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
DBitsStreamGenerator.java67 final int iEnd = bytes.length - 3; in nextBytes() local
68 while (i < iEnd) { in nextBytes()
/external/pdfium/xfa/fwl/
Dcfwl_listbox.cpp203 int32_t iEnd = GetItemIndex(this, hEnd); in SetSelection() local
204 if (iStart > iEnd) { in SetSelection()
206 iStart = iEnd; in SetSelection()
207 iEnd = iTemp; in SetSelection()
216 for (; iStart <= iEnd; iStart++) { in SetSelection()
/external/skia/src/pathops/
DSkOpAngle.cpp647 SkIntersections iEnd; in endToSide() local
650 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd); in endToSide()
652 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist); in endToSide()
679 SkDPoint oppPt = iEnd.pt(closestEnd); in endToSide()
/external/skqp/src/pathops/
DSkOpAngle.cpp647 SkIntersections iEnd; in endToSide() local
650 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd); in endToSide()
652 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist); in endToSide()
679 SkDPoint oppPt = iEnd.pt(closestEnd); in endToSide()
/external/pdfium/xfa/fde/
Dcfde_textout.cpp465 int32_t iEnd = pPiece->iChars + iStart; in ReloadLinePiece() local
466 while (iStart < iEnd) { in ReloadLinePiece()
/external/lz4/lib/
Dlz4hc.c153 LZ4HC_countPattern(const BYTE* ip, const BYTE* const iEnd, U32 const pattern32) in LZ4HC_countPattern() argument
158 while (likely(ip < iEnd-(sizeof(pattern)-1))) { in LZ4HC_countPattern()
167 while ((ip<iEnd) && (*ip == (BYTE)patternByte)) { in LZ4HC_countPattern()
172 while (ip < iEnd) { in LZ4HC_countPattern()
/external/pdfium/xfa/fgas/crt/
Dcfgas_stringformatter.cpp92 size_t iEnd = iStart + 2; in ParseTimeZone() local
93 while (iStart < spStr.size() && iStart < iEnd) in ParseTimeZone()
99 iEnd = iStart + 2; in ParseTimeZone()
100 while (iStart < spStr.size() && iStart < iEnd) in ParseTimeZone()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dtessellator.cpp2024 int iEnd = max(loopEnd[insideNumHalfTessFactorPoints],loopEnd[outsideNumHalfTessFactorPoints]); in StitchTransition() local
2033 for(int i = iStart; i <= iEnd; i++) in StitchTransition()
2078 for(int i = iEnd; i >= iStart; i--) in StitchTransition()
/external/mesa3d/src/gallium/auxiliary/tessellator/
Dtessellator.cpp2038 int iEnd = max(loopEnd[insideNumHalfTessFactorPoints],loopEnd[outsideNumHalfTessFactorPoints]); in StitchTransition() local
2047 for(int i = iStart; i <= iEnd; i++) in StitchTransition()
2092 for(int i = iEnd; i >= iStart; i--) in StitchTransition()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DBlockRealMatrix.java865 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight); in setSubMatrix() local
876 for (int i = iStart; i < iEnd; ++i) { in setSubMatrix()
DBlockFieldMatrix.java839 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight); in setSubMatrix() local
850 for (int i = iStart; i < iEnd; ++i) { in setSubMatrix()
/external/sqlite/dist/
Dsqlite3.c12730 int iEnd /* Byte offset of end of token within input text */
64918 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */
64924 assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize );
64955 if( iFreeBlk && iEnd+3>=iFreeBlk ){
64956 nFrag = iFreeBlk - iEnd;
64957 if( iEnd>iFreeBlk ) return SQLITE_CORRUPT_PAGE(pPage);
64958 iEnd = iFreeBlk + get2byte(&data[iFreeBlk+2]);
64959 if( iEnd > pPage->pBt->usableSize ){
64962 iSize = iEnd - iStart;
64975 iSize = iEnd - iPtr;
[all …]
Dsqlite3.h11691 int iEnd /* Byte offset of end of token within input text */
Dshell.c286 sqlite3_int64 iEnd = timeOfDay(); in endTimer() local
290 (iEnd - iBegin)*0.001, in endTimer()
11794 static char **readline_completion(const char *zText, int iStart, int iEnd){ in readline_completion() argument
/external/sqlite/dist/orig/
Dsqlite3.c12730 int iEnd /* Byte offset of end of token within input text */
64902 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */
64908 assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize );
64939 if( iFreeBlk && iEnd+3>=iFreeBlk ){
64940 nFrag = iFreeBlk - iEnd;
64941 if( iEnd>iFreeBlk ) return SQLITE_CORRUPT_PAGE(pPage);
64942 iEnd = iFreeBlk + get2byte(&data[iFreeBlk+2]);
64943 if( iEnd > pPage->pBt->usableSize ){
64946 iSize = iEnd - iStart;
64959 iSize = iEnd - iPtr;
[all …]
Dsqlite3.h11691 int iEnd /* Byte offset of end of token within input text */
Dshell.c280 sqlite3_int64 iEnd = timeOfDay(); in endTimer() local
284 (iEnd - iBegin)*0.001, in endTimer()
11771 static char **readline_completion(const char *zText, int iStart, int iEnd){ in readline_completion() argument
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp2742 int32_t iEnd = std::min((int32_t)(nFirstMonth + nNumberOfMonths - 1), iNums); in IPmt() local
2754 for (; i < iEnd; ++i) { in IPmt()
2877 int32_t iEnd = std::min((int32_t)(nFirstMonth + nNumberOfMonths - 1), iNums); in PPmt() local
2889 for (; i < iEnd; ++i) { in PPmt()