HomeSort by relevance Sort by last modified time
    Searched refs:iEnd (Results 1 - 25 of 37) sorted by null

1 2

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
Base64Coder.java 164 int iEnd = iOff + iLen;
166 while (ip < iEnd) {
168 int i1 = ip < iEnd ? in[ip++] & 0xff : 0;
169 int i2 = ip < iEnd ? in[ip++] & 0xff : 0;
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/pdfium/xfa/fxfa/parser/
xfa_utils.cpp 238 auto iEnd = rawValue->Find(L'\n', iStart);
239 iEnd = !iEnd.has_value() ? rawValue->GetLength() : iEnd;
240 while (iEnd.has_value() && iEnd >= iStart) {
242 rawValue->Mid(iStart, iEnd.value() - iStart));
243 iStart = iEnd.value() + 1;
246 iEnd = rawValue->Find(L'\n', iStart);
597 int32_t iStart = scriptIndex->wAttributeStart, iEnd = iStart + icount - 1
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_cssdatatable.cpp 128 int32_t iEnd = g_iCSSPropertyCount;
132 iMid = (iStart + iEnd) / 2;
139 iEnd = iMid - 1;
141 } while (iStart <= iEnd);
cfx_cssdeclaration.cpp 119 int32_t iEnd = g_iCSSPropertyValueCount;
123 iMid = (iStart + iEnd) / 2;
130 iEnd = iMid - 1;
132 } while (iStart <= iEnd);
140 int32_t iEnd =
145 iMid = (iStart + iEnd) / 2;
152 iEnd = iMid - 1;
154 } while (iStart <= iEnd);
161 int32_t iEnd = sizeof(g_CFX_CSSColors) / sizeof(CFX_CSSColorTable) - 1;
165 iMid = (iStart + iEnd) / 2
    [all...]
  /external/pdfium/fxjs/
cjs_util.cpp 202 int iEnd;
203 while ((iEnd = cFormat.find(TbConvertTable[i].lpszJSMark, iStart)) !=
205 cFormat.replace(iEnd, wcslen(TbConvertTable[i].lpszJSMark),
207 iStart = iEnd;
222 int iEnd;
223 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) {
224 if (iEnd > 0) {
225 if (cFormat[iEnd - 1] == L'%') {
226 iStart = iEnd + 1;
230 cFormat.replace(iEnd, wcslen(cTableAd[i].lpszJSMark)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
BitsStreamGenerator.java 67 final int iEnd = bytes.length - 3;
68 while (i < iEnd) {
  /external/sonivox/jet_tools/JetCreator/
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.iTop + Marker.iHeight:
244 if Marker.iStart <= Marker1.iStart and Marker.iEnd <= Marker1.iEnd and Marker.iEnd >= Marker1.iStart:
    [all...]
  /external/libxaac/decoder/drc_src/
impd_drc_process.c 49 WORD32 iEnd, iStart;
97 iEnd = 0;
99 while (iEnd < ia_drc_params_struct->drc_frame_size) {
103 while ((iEnd < ia_drc_params_struct->drc_frame_size) &&
104 (fabs(lpcm_gains[iEnd] - drc_gain_last) <= gainThr))
105 iEnd++;
107 iEnd = ia_drc_params_struct->drc_frame_size;
119 &deinterleaved_audio[signalIndex][0], iStart, iEnd);
122 for (i = iStart; i < iEnd; i++) {
128 if ((iEnd < ia_drc_params_struct->drc_frame_size) &
    [all...]
  /frameworks/compile/mclinker/unittests/
HashTableTest.cpp 248 HashTableTy::iterator iter, iEnd = hashTable->end();
250 for (iter = hashTable->begin(); iter != iEnd; ++iter) {
272 HashTableTy::chain_iterator iter, iEnd = hashTable->end(key * 37);
273 for (iter = hashTable->begin(key * 37); iter != iEnd; ++iter) {
304 HashTableTy::chain_iterator iter, iEnd = hashTable->end(key);
305 for (iter = hashTable->begin(key); iter != iEnd; ++iter) {
  /frameworks/compile/mclinker/lib/LD/
NamePool.cpp 27 FreeInfoSet::iterator info, iEnd = m_FreeInfoSet.end();
28 for (info = m_FreeInfoSet.begin(); info != iEnd; ++info) {
  /external/fio/tools/hist/
fiologparser_hist.py 194 def process_interval(ctx, samples, iStart, iEnd):
198 [iStart,iEnd].
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/pdfium/fxjs/xfa/
cjx_node.cpp 71 int32_t iEnd = (sizeof(gs_eventParaInfos) / sizeof(gs_eventParaInfos[0])) - 1;
73 int32_t iMid = (iStart + iEnd) / 2;
78 iEnd = iMid - 1;
81 } while (iStart <= iEnd);
cjx_object.cpp 643 auto iEnd = wsContent.Find(L'\n', iStart);
644 iEnd = !iEnd.has_value() ? iLength : iEnd;
645 while (iEnd.value() >= iStart) {
647 wsContent.Mid(iStart, iEnd.value() - iStart));
648 iStart = iEnd.value() + 1;
652 iEnd = wsContent.Find(L'\n', iStart);
653 if (!iEnd.has_value()) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Splitter.cpp 213 iEnd = loopInstrs.end();
214 iItr != iEnd; ++iItr) {
246 iEnd = loopInstrs.end();
247 iItr != iEnd; ++iItr) {
352 for (MachineBasicBlock::iterator iItr = mbb->begin(), iEnd = mbb->end();
353 iItr != iEnd; ++iItr) {
  /external/pdfium/xfa/fwl/
cfwl_listbox.cpp 210 int32_t iEnd = GetItemIndex(this, hEnd);
211 if (iStart > iEnd) {
213 iStart = iEnd;
214 iEnd = iTemp;
223 for (; iStart <= iEnd; iStart++) {
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 77 int32_t iEnd = iStart + 2;
78 while (iStart < iLen && iStart < iEnd)
84 iEnd = iStart + 2;
85 while (iStart < iLen && iStart < iEnd)
    [all...]
  /external/pdfium/xfa/fgas/font/
cfgas_fontmgr.cpp 70 int32_t iEnd = sizeof(g_FXCharset2CodePageTable) / sizeof(FX_CHARSET_MAP) - 1;
71 ASSERT(iEnd >= 0);
75 iMid = (iStart + iEnd) / 2;
80 iEnd = iMid - 1;
83 } while (iStart <= iEnd);
    [all...]
fgas_fontutils.cpp     [all...]
  /external/pdfium/xfa/fde/
cfde_textout.cpp 472 int32_t iEnd = pPiece->iChars + iStar;
473 while (iStar < iEnd) {
  /external/skia/src/pathops/
SkOpAngle.cpp 545 SkIntersections iEnd;
548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd);
550 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist);
577 SkDPoint oppPt = iEnd.pt(closestEnd);
    [all...]
  /external/skqp/src/pathops/
SkOpAngle.cpp 545 SkIntersections iEnd;
548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd);
550 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist);
577 SkDPoint oppPt = iEnd.pt(closestEnd);
    [all...]
  /external/pdfium/xfa/fxfa/
cxfa_widgetacc.cpp     [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BlockFieldMatrix.java     [all...]
BlockRealMatrix.java     [all...]

Completed in 703 milliseconds

1 2