Lines Matching refs:nShift
79384 int nShift = pageFreeArray(pPg, iOld, iNew-iOld, pCArray); local
79385 if( NEVER(nShift>nCell) ) return SQLITE_CORRUPT_BKPT;
79386 memmove(pPg->aCellIdx, &pPg->aCellIdx[nShift*2], nCell*2);
79387 nCell -= nShift;
205964 int nShift; /* Number of tokens to shift snippet by */
205985 nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet;
205986 assert( nShift<=nDesired );
205987 if( nShift>0 ){
205988 *piPos += nShift;
205989 *pHlmask = hlmask >> nShift;
249395 int nShift = iNext - 4;
249417 i2 = sqlite3Fts5PutVarint(aIdx, iFirst-nShift);
249427 nPg = pLeaf->szLeaf - nShift;
249428 memmove(&aPg[4], &aPg[4+nShift], nPg-4);
249706 int nShift = iNextOff - iOff; /* Distance to move them */
249712 iPgIdx -= nShift;
249721 int iKeyOut = (iKeyIn - (iKeyIn>iOff ? nShift : 0));