Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfdoc/
Ddoc_vt.cpp149 int32_t nLeft = 0; in UpdateWordPlace() local
151 int32_t nMid = (nLeft + nRight) / 2; in UpdateWordPlace()
152 while (nLeft <= nRight) { in UpdateWordPlace()
156 nMid = (nLeft + nRight) / 2; in UpdateWordPlace()
158 nLeft = nMid + 1; in UpdateWordPlace()
159 nMid = (nLeft + nRight) / 2; in UpdateWordPlace()
174 int32_t nLeft = 0; in SearchWordPlace() local
179 while (nLeft <= nRight) { in SearchWordPlace()
192 nMid = (nLeft + nRight) / 2; in SearchWordPlace()
195 nLeft = nMid + 1; in SearchWordPlace()
[all …]
/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/
Dsqlite3.c51713 int nLeft, /* IN: Elements in array *paLeft */
51724 assert( nLeft>0 && nRight>0 );
51725 while( iRight<nRight || iLeft<nLeft ){
51729 if( (iLeft<nLeft)
51739 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
51741 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
138188 int nLeft, /* Maximum difference in token positions */
138204 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
138417 char *aLeft, int nLeft, /* Left doclist */
138424 char *pEnd1 = &aLeft[nLeft];
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c51695 int nLeft, /* IN: Elements in array *paLeft */
51706 assert( nLeft>0 && nRight>0 );
51707 while( iRight<nRight || iLeft<nLeft ){
51711 if( (iLeft<nLeft)
51721 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
51723 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
138170 int nLeft, /* Maximum difference in token positions */
138186 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
138399 char *aLeft, int nLeft, /* Left doclist */
138406 char *pEnd1 = &aLeft[nLeft];
[all …]