Searched refs:nLeft (Results 1 - 13 of 13) sorted by relevance

/external/fonttools/Lib/fontTools/
H A 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
[all...]
/external/fonttools/Tools/fontTools/
H A 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
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_vt.cpp165 FX_INT32 nLeft = 0; local
167 FX_INT32 nMid = (nLeft + nRight) / 2;
168 while (nLeft <= nRight) {
172 nMid = (nLeft + nRight) / 2;
174 nLeft = nMid + 1;
175 nMid = (nLeft + nRight) / 2;
191 FX_INT32 nLeft = 0; local
196 while (nLeft <= nRight) {
208 nMid = (nLeft + nRight) / 2;
211 nLeft
246 FX_INT32 nLeft = range.BeginPos.nWordIndex; local
1163 FX_INT32 nLeft = 0; local
1572 FX_INT32 nLeft = 0; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1873 int nLeft = nIdx/2; local
1874 int nRight = nIdx-nLeft;
1876 int *aRight = &aIdx[nLeft];
1878 SortByDistance(aLeft, nLeft, aDistance, aSpare);
1881 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
1884 while( iLeft<nLeft || iRight<nRight ){
1885 if( iLeft==nLeft ){
1942 int nLeft = nIdx/2; local
1943 int nRight = nIdx-nLeft;
1945 int *aRight = &aIdx[nLeft];
2029 int nLeft; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/icu/
H A Dicu.c382 int nLeft,
389 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
380 icuCollationColl( void *pCtx, int nLeft, const void *zLeft, int nRight, const void *zRight ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c1725 int nLeft, /* Maximum difference in token positions */
1736 return fts3PoslistPhraseMerge(0, nLeft, 0, 0, pp2, pp1);
1747 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
2493 int nLeft, nRight; local
2507 nLeft = nOut;
2516 nLeft = nList;
2521 mt, nDist, 0, pOut, &nOut, aLeft, nLeft, aRight, nRight, &nDoc
2554 int nLeft, /* Size of LHS doclist in bytes */
2566 aOut = sqlite3_malloc(nLeft+nRight+1);
2571 aOut, pnOut, aLeft, nLeft, aRigh
1721 fts3PoslistNearMerge( char **pp, char *aTmp, int nRight, int nLeft, char **pp1, char **pp2 ) argument
2549 fts3NearMerge( int mergetype, int nNear, int nTokenLeft, char *aLeft, int nLeft, int nTokenRight, char *aRight, int nRight, char **paOut, int *pnOut ) argument
2871 int nLeft; local
[all...]
H A Dfts3_snippet.c595 int nLeft; /* Tokens to the left of first highlight */ local
599 for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++);
601 nDesired = (nLeft-nRight)/2;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c1451 const char *pLeft, int nLeft,
1459 if( nLeft==0 ){
1464 dataBufferAppend(pOut, pLeft, nLeft);
1468 rc = dlrInit(&left, DL_DEFAULT, pLeft, nLeft);
1590 const char *pLeft, int nLeft,
1599 if( nLeft==0 || nRight==0 ) return SQLITE_OK;
1603 rc = dlrInit(&left, DL_POSITIONS, pLeft, nLeft);
1640 const char *pLeft, int nLeft,
1648 if( nLeft==0 || nRight==0 ) return SQLITE_OK;
1650 rc = dlrInit(&left, DL_DOCIDS, pLeft, nLeft);
1450 docListUnion( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
1589 docListPhraseMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DocListType iType, DataBuffer *pOut ) argument
1639 docListAndMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
1685 docListOrMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
1748 docListExceptMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dwal.c1356 int nLeft, /* IN: Elements in array *paLeft */
1367 assert( nLeft>0 && nRight>0 );
1368 while( iRight<nRight || iLeft<nLeft ){
1372 if( (iLeft<nLeft)
1382 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
1384 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
1353 walMerge( const u32 *aContent, ht_slot *aLeft, int nLeft, ht_slot **paRight, int *pnRight, ht_slot *aTmp ) argument
H A Dtest1.c1824 int nLeft,
1834 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj((char *)zLeft, nLeft));
1822 testCreateCollationCmp( void *pCtx, int nLeft, const void *zLeft, int nRight, const void *zRight ) argument
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c44633 walMerge( const u32 *aContent, ht_slot *aLeft, int nLeft, ht_slot **paRight, int *pnRight, ht_slot *aTmp ) argument
114782 fts3PoslistNearMerge( char **pp, char *aTmp, int nRight, int nLeft, char **pp1, char **pp2 ) argument
115554 int nLeft, nRight; local
115610 fts3NearMerge( int mergetype, int nNear, int nTokenLeft, char *aLeft, int nLeft, int nTokenRight, char *aRight, int nRight, char **paOut, int *pnOut ) argument
115932 int nLeft; local
123239 int nLeft; /* Tokens to the left of first highlight */ local
126141 int nLeft = nIdx/2; local
126210 int nLeft = nIdx/2; local
126297 int nLeft; local
127886 icuCollationColl( void *pCtx, int nLeft, const void *zLeft, int nRight, const void *zRight ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c48870 walMerge( const u32 *aContent, ht_slot *aLeft, int nLeft, ht_slot **paRight, int *pnRight, ht_slot *aTmp ) argument
129097 fts3PoslistNearMerge( char **pp, char *aTmp, int nRight, int nLeft, char **pp1, char **pp2 ) argument
129327 fts3DoclistPhraseMerge( int bDescDoclist, int nDist, char *aLeft, int nLeft, char *aRight, int *pnRight ) argument
130776 int nLeft; local
142910 int nLeft; /* Tokens to the left of first highlight */ local
146626 int nLeft = nIdx/2; local
146695 int nLeft = nIdx/2; local
146781 int nLeft; local
148494 icuCollationColl( void *pCtx, int nLeft, const void *zLeft, int nRight, const void *zRight ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c48890 walMerge( const u32 *aContent, ht_slot *aLeft, int nLeft, ht_slot **paRight, int *pnRight, ht_slot *aTmp ) argument
129117 fts3PoslistNearMerge( char **pp, char *aTmp, int nRight, int nLeft, char **pp1, char **pp2 ) argument
129347 fts3DoclistPhraseMerge( int bDescDoclist, int nDist, char *aLeft, int nLeft, char *aRight, int *pnRight ) argument
130808 int nLeft; local
142942 int nLeft; /* Tokens to the left of first highlight */ local
146658 int nLeft = nIdx/2; local
146727 int nLeft = nIdx/2; local
146813 int nLeft; local
148526 icuCollationColl( void *pCtx, int nLeft, const void *zLeft, int nRight, const void *zRight ) argument
[all...]

Completed in 6586 milliseconds