/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/ |
D | Base64Coder.java | 164 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/ |
D | JetSegGraph.py | 58 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/libxaac/decoder/drc_src/ |
D | impd_drc_process.c | 49 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/pdfium/fxjs/ |
D | cjs_util.cpp | 202 int iEnd; in printd() local 203 while ((iEnd = cFormat.find(TbConvertTable[i].lpszJSMark, iStart)) != in printd() 205 cFormat.replace(iEnd, wcslen(TbConvertTable[i].lpszJSMark), in printd() 207 iStart = iEnd; in printd() 222 int iEnd; in printd() local 223 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) { in printd() 224 if (iEnd > 0) { in printd() 225 if (cFormat[iEnd - 1] == L'%') { in printd() 226 iStart = iEnd + 1; in printd() 230 cFormat.replace(iEnd, wcslen(cTableAd[i].lpszJSMark), in printd() [all …]
|
/external/pdfium/xfa/fxfa/parser/ |
D | xfa_utils.cpp | 238 auto iEnd = rawValue->Find(L'\n', iStart); in RegenerateFormFile_Changed() local 239 iEnd = !iEnd.has_value() ? rawValue->GetLength() : iEnd; in RegenerateFormFile_Changed() 240 while (iEnd.has_value() && iEnd >= iStart) { in RegenerateFormFile_Changed() 242 rawValue->Mid(iStart, iEnd.value() - iStart)); in RegenerateFormFile_Changed() 243 iStart = iEnd.value() + 1; in RegenerateFormFile_Changed() 246 iEnd = rawValue->Find(L'\n', iStart); in RegenerateFormFile_Changed() 597 int32_t iStart = scriptIndex->wAttributeStart, iEnd = iStart + icount - 1; in XFA_GetScriptAttributeByName() local 599 int32_t iMid = (iStart + iEnd) / 2; in XFA_GetScriptAttributeByName() 604 iEnd = iMid - 1; in XFA_GetScriptAttributeByName() 607 } while (iStart <= iEnd); in XFA_GetScriptAttributeByName()
|
/external/pdfium/core/fxcrt/css/ |
D | cfx_cssdeclaration.cpp | 119 int32_t iEnd = g_iCSSPropertyValueCount; in GetCSSPropertyValueByName() local 123 iMid = (iStart + iEnd) / 2; in GetCSSPropertyValueByName() 130 iEnd = iMid - 1; in GetCSSPropertyValueByName() 132 } while (iStart <= iEnd); in GetCSSPropertyValueByName() 140 int32_t iEnd = in GetCSSLengthUnitByName() local 145 iMid = (iStart + iEnd) / 2; in GetCSSLengthUnitByName() 152 iEnd = iMid - 1; in GetCSSLengthUnitByName() 154 } while (iStart <= iEnd); in GetCSSLengthUnitByName() 161 int32_t iEnd = sizeof(g_CFX_CSSColors) / sizeof(CFX_CSSColorTable) - 1; in GetCSSColorByName() local 165 iMid = (iStart + iEnd) / 2; in GetCSSColorByName() [all …]
|
D | cfx_cssdatatable.cpp | 128 int32_t iEnd = g_iCSSPropertyCount; in CFX_GetCSSPropertyByName() local 132 iMid = (iStart + iEnd) / 2; in CFX_GetCSSPropertyByName() 139 iEnd = iMid - 1; in CFX_GetCSSPropertyByName() 141 } while (iStart <= iEnd); in CFX_GetCSSPropertyByName()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
D | BitsStreamGenerator.java | 67 final int iEnd = bytes.length - 3; in nextBytes() local 68 while (i < iEnd) { in nextBytes()
|
/external/fio/tools/hist/ |
D | fiologparser_hist.py | 194 def process_interval(ctx, samples, iStart, iEnd): argument 211 idx = np.where(start_times < iEnd) 215 ws = hs * weights(s_ts, end_time, iStart, iEnd) 227 if ss_cnt > 0: print_all_stats(ctx, iEnd, mn_bin_val, ss_cnt, bin_vals, iHist, mx_bin_val)
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | Splitter.cpp | 213 iEnd = loopInstrs.end(); in copyRanges() local 214 iItr != iEnd; ++iItr) { in copyRanges() 246 iEnd = loopInstrs.end(); in renameInside() local 247 iItr != iEnd; ++iItr) { in renameInside() 352 for (MachineBasicBlock::iterator iItr = mbb->begin(), iEnd = mbb->end(); in dumpOddTerminators() local 353 iItr != iEnd; ++iItr) { in dumpOddTerminators()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_node.cpp | 71 int32_t iEnd = (sizeof(gs_eventParaInfos) / sizeof(gs_eventParaInfos[0])) - 1; in GetEventParaInfoByName() local 73 int32_t iMid = (iStart + iEnd) / 2; in GetEventParaInfoByName() 78 iEnd = iMid - 1; in GetEventParaInfoByName() 81 } while (iStart <= iEnd); in GetEventParaInfoByName()
|
D | cjx_object.cpp | 643 auto iEnd = wsContent.Find(L'\n', iStart); in SetContent() local 644 iEnd = !iEnd.has_value() ? iLength : iEnd; in SetContent() 645 while (iEnd.value() >= iStart) { in SetContent() 647 wsContent.Mid(iStart, iEnd.value() - iStart)); in SetContent() 648 iStart = iEnd.value() + 1; in SetContent() 652 iEnd = wsContent.Find(L'\n', iStart); in SetContent() 653 if (!iEnd.has_value()) { in SetContent()
|
/external/pdfium/xfa/fwl/ |
D | cfwl_listbox.cpp | 210 int32_t iEnd = GetItemIndex(this, hEnd); in SetSelection() local 211 if (iStart > iEnd) { in SetSelection() 213 iStart = iEnd; in SetSelection() 214 iEnd = iTemp; in SetSelection() 223 for (; iStart <= iEnd; iStart++) { in SetSelection()
|
/external/pdfium/xfa/fgas/font/ |
D | fgas_fontutils.cpp | 1872 int32_t iEnd = sizeof(g_FXGdiFontUSBTable) / sizeof(FGAS_FONTUSB) - 1; in FGAS_GetUnicodeBitField() local 1873 ASSERT(iEnd >= 0); in FGAS_GetUnicodeBitField() 1878 iMid = (iStart + iEnd) / 2; in FGAS_GetUnicodeBitField() 1881 iEnd = iMid - 1; in FGAS_GetUnicodeBitField() 1886 } while (iStart <= iEnd); in FGAS_GetUnicodeBitField()
|
D | cfgas_fontmgr.cpp | 70 int32_t iEnd = sizeof(g_FXCharset2CodePageTable) / sizeof(FX_CHARSET_MAP) - 1; in GetCodePageFromCharset() local 71 ASSERT(iEnd >= 0); in GetCodePageFromCharset() 75 iMid = (iStart + iEnd) / 2; in GetCodePageFromCharset() 80 iEnd = iMid - 1; in GetCodePageFromCharset() 83 } while (iStart <= iEnd); in GetCodePageFromCharset()
|
/external/skia/src/pathops/ |
D | SkOpAngle.cpp | 545 SkIntersections iEnd; in endToSide() local 548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd); in endToSide() 550 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist); in endToSide() 577 SkDPoint oppPt = iEnd.pt(closestEnd); in endToSide()
|
/external/skqp/src/pathops/ |
D | SkOpAngle.cpp | 545 SkIntersections iEnd; in endToSide() local 548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd); in endToSide() 550 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist); in endToSide() 577 SkDPoint oppPt = iEnd.pt(closestEnd); in endToSide()
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_widgetacc.cpp | 1967 auto iEnd = wsValue.Find(L'\n', iStart); in GetSelectedItemsValue() local 1968 iEnd = (!iEnd.has_value()) ? iLength : iEnd; in GetSelectedItemsValue() 1969 while (iEnd >= iStart) { in GetSelectedItemsValue() 1970 wsSelTextArray.push_back(wsValue.Mid(iStart, iEnd.value() - iStart)); in GetSelectedItemsValue() 1971 iStart = iEnd.value() + 1; in GetSelectedItemsValue() 1974 iEnd = wsValue.Find(L'\n', iStart); in GetSelectedItemsValue() 1975 if (!iEnd.has_value()) in GetSelectedItemsValue()
|
/external/pdfium/xfa/fde/ |
D | cfde_textout.cpp | 472 int32_t iEnd = pPiece->iChars + iStar; in ReloadLinePiece() local 473 while (iStar < iEnd) { in ReloadLinePiece()
|
/external/pdfium/xfa/fgas/crt/ |
D | cfgas_formatstring.cpp | 77 int32_t iEnd = iStart + 2; in ParseTimeZone() local 78 while (iStart < iLen && iStart < iEnd) in ParseTimeZone() 84 iEnd = iStart + 2; in ParseTimeZone() 85 while (iStart < iLen && iStart < iEnd) in ParseTimeZone()
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 957 private static int copyGapBytes(byte[] newcode, int j, byte[] code, int i, int iEnd) { in copyGapBytes() argument 958 switch (iEnd - i) { in copyGapBytes()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | BlockRealMatrix.java | 865 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight); in setSubMatrix() local 876 for (int i = iStart; i < iEnd; ++i) { in setSubMatrix()
|
D | BlockFieldMatrix.java | 839 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/orig/ |
D | sqlite3.c | 11788 int iEnd /* Byte offset of end of token within input text */ 62077 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */ 62083 assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize ); 62114 if( iFreeBlk && iEnd+3>=iFreeBlk ){ 62115 nFrag = iFreeBlk - iEnd; 62116 if( iEnd>iFreeBlk ) return SQLITE_CORRUPT_PAGE(pPage); 62117 iEnd = iFreeBlk + get2byte(&data[iFreeBlk+2]); 62118 if( iEnd > pPage->pBt->usableSize ){ 62121 iSize = iEnd - iStart; 62134 iSize = iEnd - iPtr; [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 11788 int iEnd /* Byte offset of end of token within input text */ 62077 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */ 62083 assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize ); 62114 if( iFreeBlk && iEnd+3>=iFreeBlk ){ 62115 nFrag = iFreeBlk - iEnd; 62116 if( iEnd>iFreeBlk ) return SQLITE_CORRUPT_PAGE(pPage); 62117 iEnd = iFreeBlk + get2byte(&data[iFreeBlk+2]); 62118 if( iEnd > pPage->pBt->usableSize ){ 62121 iSize = iEnd - iStart; 62134 iSize = iEnd - iPtr; [all …]
|