Home | History | Annotate | Download | only in fts3

Lines Matching defs:pEnd

424 ** As long as *pp has not reached its end (pEnd), then do the same
429 static void fts3GetDeltaVarint2(char **pp, char *pEnd, sqlite3_int64 *pVal){
430 if( *pp>=pEnd ){
1383 char *pEnd = *ppPoslist;
1391 ** The following while-loop moves pEnd to point to the first byte that is not
1393 ** pEnd once more so that it points to the byte immediately following the
1396 while( *pEnd | c ){
1397 c = *pEnd++ & 0x80;
1398 pEnd)==0 );
1400 pEnd++; /* Advance past the POS_END terminator byte */
1403 int n = (int)(pEnd - *ppPoslist);
1409 *ppPoslist = pEnd;
1430 char *pEnd = *ppPoslist;
1436 while( 0xFE & (*pEnd | c) ){
1437 c = *pEnd++ & 0x80;
1438 testcase( c!=0 && ((*pEnd)&0xfe)==0 );
1441 int n = (int)(pEnd - *ppPoslist);
1447 *ppPoslist = pEnd;
3281 char *pEnd = &pExpr->aDoclist[pExpr->nDoclist];
3292 while( pCsr<pEnd ){
3295 if( pCsr<pEnd ){