Home
last modified time | relevance | path

Searched refs:nLeft (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcsection.cpp128 int32_t nLeft = 0; in UpdateWordPlace() local
130 int32_t nMid = (nLeft + nRight) / 2; in UpdateWordPlace()
131 while (nLeft <= nRight) { in UpdateWordPlace()
135 nMid = (nLeft + nRight) / 2; in UpdateWordPlace()
137 nLeft = nMid + 1; in UpdateWordPlace()
138 nMid = (nLeft + nRight) / 2; in UpdateWordPlace()
154 int32_t nLeft = 0; in SearchWordPlace() local
159 while (nLeft <= nRight) { in SearchWordPlace()
172 nMid = (nLeft + nRight) / 2; in SearchWordPlace()
175 nLeft = nMid + 1; in SearchWordPlace()
[all …]
Dcpdf_variabletext.cpp554 int32_t nLeft = 0; in SearchWordPlace() local
559 while (nLeft <= nRight) { in SearchWordPlace()
569 nMid = (nLeft + nRight) / 2; in SearchWordPlace()
572 nLeft = nMid + 1; in SearchWordPlace()
573 nMid = (nLeft + nRight) / 2; in SearchWordPlace()
991 int32_t nLeft = 0; in GetAutoFontSize() local
994 while (nLeft <= nRight) { in GetAutoFontSize()
997 nMid = (nLeft + nRight) / 2; in GetAutoFontSize()
1000 nLeft = nMid + 1; in GetAutoFontSize()
1001 nMid = (nLeft + nRight) / 2; in GetAutoFontSize()
/external/fonttools/Lib/fontTools/
DcffLib.py881 nLeft = end - first
882 if nLeft > 255:
884 ranges.append((first, nLeft))
887 nLeft = end - first
888 if nLeft > 255:
890 ranges.append((first, nLeft))
897 for first, nLeft in ranges:
898 data.append(packCard16(first) + nLeftFunc(nLeft))
922 nLeft = nLeftFunc(file)
924 for CID in range(first, first+nLeft+1):
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c56074 int nLeft, /* IN: Elements in array *paLeft */
56085 assert( nLeft>0 && nRight>0 );
56086 while( iRight<nRight || iLeft<nLeft ){
56090 if( (iLeft<nLeft)
56100 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
56102 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
90349 int nLeft, nRight;
90352 nLeft = sqlite3ExprVectorSize(pExpr->pLeft);
90355 if( nRight==nLeft ){
90362 if( nLeft!=nRight ){
[all …]
/external/sqlite/dist/
Dsqlite3.c56074 int nLeft, /* IN: Elements in array *paLeft */
56085 assert( nLeft>0 && nRight>0 );
56086 while( iRight<nRight || iLeft<nLeft ){
56090 if( (iLeft<nLeft)
56100 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
56102 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
90349 int nLeft, nRight;
90352 nLeft = sqlite3ExprVectorSize(pExpr->pLeft);
90355 if( nRight==nLeft ){
90362 if( nLeft!=nRight ){
[all …]