Lines Matching defs:iNew
54651 unsigned int iNew
54659 assert( iOld!=iNew ); /* The page number really is changing */
54671 assert( pcache1FetchNoMutex(p, iNew, 0)==0 ); /* iNew not in cache */
54672 hNew = iNew%pCache->nHash;
54673 pPage->iKey = iNew;
54676 if( iNew>pCache->iMaxKey ){
54677 pCache->iMaxKey = iNew;
62830 ** with a page number other than iNew. This function changes the page's
62831 ** page number to iNew and sets the value of the PgHdr.flags field to
62834 SQLITE_PRIVATE void sqlite3PagerRekey(DbPage *pPg, Pgno iNew, u16 flags){
62835 assert( pPg->pgno!=iNew );
62837 sqlite3PcacheMove(pPg, iNew);
76125 ** starting at apCell[iNew].
76136 int iNew, /* Index of new first cell on page */
76148 int iNewEnd = iNew + nNew;
76157 if( iOld<iNew ){
76158 int nShift = pageFreeArray(pPg, iOld, iNew-iOld, pCArray);
76174 if( iNew<iOld ){
76175 int nAdd = MIN(nNew,iOld-iNew);
76176 assert( (iOld-iNew)<nNew || nCell==0 || CORRUPT_DB );
76182 iNew, nAdd, pCArray
76189 int iCell = (iOld + pPg->aiOvfl[i]) - iNew;
76196 cachedCellSize(pCArray, iCell+iNew);
76199 iCell+iNew, 1, pCArray
76209 iNew+nCell, nNew-nCell, pCArray
76220 u8 *pCell = pCArray->apCell[i+iNew];
76226 pCArray->pRef->xCellSize(pCArray->pRef, pCArray->apCell[i+iNew])) );
76233 populateCellCache(pCArray, iNew, nNew);
76234 return rebuildPage(pCArray, iNew, nNew, pPg);
77036 int iNew = 0;
77048 if( i==cntNew[iNew] ){
77049 pNew = apNew[++iNew];
77163 int iNew;
77176 iNew = iOld = 0;
77180 iNew = cntNew[iPg-1] + !leafData;
77181 nNewCell = cntNew[iPg] - iNew;
77184 rc = editPage(apNew[iPg], iOld, iNew, nNewCell, &b);
142200 ** aCsrMap[iOld+1] = iNew;
158430 tRowcnt iNew;
158434 iNew = a[0] + ((pLower->eOperator & mask) ? a[1] : 0);
158435 if( iNew>iLower ) iLower = iNew;
158447 tRowcnt iNew;
158451 iNew = a[0] + ((pUpper->eOperator & mask) ? a[1] : 0);
158452 if( iNew<iUpper ) iUpper = iNew;
177421 int iNew = *(int*)pArg;
177423 if( iNew>=0 && iNew<=255 ){
177424 sqlite3BtreeSetPageSize(pBtree, 0, iNew, 0);
235760 static int sqlite3Fts5IndexSetCookie(Fts5Index *p, int iNew){
235763 u8 aCookie[4]; /* Binary representation of iNew */
235767 sqlite3Fts5Put32(aCookie, iNew);
238529 i64 iNew = sqlite3_value_int64(apVal[1]); /* Rowid to delete */
238530 rc = sqlite3Fts5StorageDelete(pTab->pStorage, iNew, 0);
238538 i64 iNew = sqlite3_value_int64(apVal[1]); /* New rowid */
238539 if( eType1==SQLITE_INTEGER && iOld!=iNew ){
238543 rc = sqlite3Fts5StorageDelete(pTab->pStorage, iNew, 0);
240916 int iNew = p->pConfig->iCookie + 1;
240917 rc = sqlite3Fts5IndexSetCookie(p->pIndex, iNew);
240919 p->pConfig->iCookie = iNew;