HomeSort by relevance Sort by last modified time
    Searched refs:nMid (Results 1 - 3 of 3) sorted by null

  /external/pdfium/core/fpdfdoc/
csection.cpp 110 int32_t nMid = (nLeft + nRight) / 2;
112 CLine* pLine = m_LineArray[nMid].get();
114 nRight = nMid - 1;
115 nMid = (nLeft + nRight) / 2;
117 nLeft = nMid + 1;
118 nMid = (nLeft + nRight) / 2;
120 place.nLineIndex = nMid;
133 int32_t nMid = pdfium::CollectionSize<int32_t>(m_LineArray) / 2;
135 CLine* pLine = m_LineArray[nMid].get();
144 nRight = nMid - 1
    [all...]
cpdf_variabletext.cpp 434 int32_t nMid = pdfium::CollectionSize<int32_t>(m_SectionArray) / 2;
438 if (!pdfium::IndexInBounds(m_SectionArray, nMid))
440 CSection* pSection = m_SectionArray[nMid].get();
446 nRight = nMid - 1;
447 nMid = (nLeft + nRight) / 2;
451 nLeft = nMid + 1;
452 nMid = (nLeft + nRight) / 2;
457 place.nSecIndex = nMid;
855 int32_t nMid = nTotal / 2;
857 if (IsBigger(gFontSizeSteps[nMid]))
    [all...]
  /external/pdfium/fpdfsdk/
fpdfppo.cpp 94 auto nMid = cbMidRange.Find('-');
95 if (!nMid.has_value()) {
103 atoi(cbMidRange.Left(nMid.value()).c_str()));
107 nMid = nMid.value() + 1;
108 size_t nEnd = cbMidRange.GetLength() - nMid.value();
113 atoi(cbMidRange.Mid(nMid.value(), nEnd).c_str()));

Completed in 124 milliseconds