Lines Matching refs:ix

4698     btreeParseCell(pCur->pPage, pCur->ix, &info);  in assertCellInfo()
4707 btreeParseCell(pCur->pPage,pCur->ix,&pCur->info); in getCellInfo()
4959 if( pCur->ix>=pPage->nCell ){ in accessPayload()
5209 assert( pCur->ix<pCur->pPage->nCell || CORRUPT_DB ); in fetchPayload()
5263 pCur->aiIdx[pCur->iPage] = pCur->ix; in moveToChild()
5265 pCur->ix = 0; in moveToChild()
5315 pCur->ix = pCur->aiIdx[pCur->iPage-1]; in moveToParent()
5402 pCur->ix = 0; in moveToRoot()
5436 assert( pCur->ix<pPage->nCell ); in moveToLeftmost()
5437 pgno = get4byte(findCell(pPage, pCur->ix)); in moveToLeftmost()
5462 pCur->ix = pPage->nCell; in moveToRightmost()
5466 pCur->ix = pPage->nCell-1; in moveToRightmost()
5513 assert( pCur->ix==pCur->pPage->nCell-1 || CORRUPT_DB ); in sqlite3BtreeLast()
5514 testcase( pCur->ix!=pCur->pPage->nCell-1 ); in sqlite3BtreeLast()
5665 pCur->ix = (u16)idx; in sqlite3BtreeTableMoveto()
5683 assert( pCur->ix<pCur->pPage->nCell ); in sqlite3BtreeTableMoveto()
5684 pCur->ix = (u16)idx; in sqlite3BtreeTableMoveto()
5695 pCur->ix = (u16)lwr; in sqlite3BtreeTableMoveto()
5835 if( pCur->ix==pCur->pPage->nCell-1 in sqlite3BtreeIndexMoveto()
5836 && (c = indexCellCompare(pCur, pCur->ix, pIdxKey, xRecordCompare))<=0 in sqlite3BtreeIndexMoveto()
5943 pCur->ix = (u16)idx; in sqlite3BtreeIndexMoveto()
5966 pCur->ix = (u16)idx; in sqlite3BtreeIndexMoveto()
5977 assert( pCur->ix<pCur->pPage->nCell || CORRUPT_DB ); in sqlite3BtreeIndexMoveto()
5978 pCur->ix = (u16)idx; in sqlite3BtreeIndexMoveto()
5988 pCur->ix = (u16)lwr; in sqlite3BtreeIndexMoveto()
6081 idx = ++pCur->ix; in btreeNext()
6099 }while( pCur->ix>=pPage->nCell ); in btreeNext()
6121 if( (++pCur->ix)>=pPage->nCell ){ in sqlite3BtreeNext()
6122 pCur->ix--; in sqlite3BtreeNext()
6176 int idx = pCur->ix; in btreePrevious()
6181 while( pCur->ix==0 ){ in btreePrevious()
6191 pCur->ix--; in btreePrevious()
6208 || pCur->ix==0 in sqlite3BtreePrevious()
6213 pCur->ix--; in sqlite3BtreePrevious()
8763 pCur->ix = 0; in balance()
9181 idx = pCur->ix; in sqlite3BtreeInsert()
9225 idx = ++pCur->ix; in sqlite3BtreeInsert()
9446 iCellIdx = pCur->ix; in sqlite3BtreeDelete()
9599 pCur->ix = pPage->nCell-1; in sqlite3BtreeDelete()
10120 }while ( pCur->ix>=pCur->pPage->nCell ); in sqlite3BtreeCount()
10122 pCur->ix++; in sqlite3BtreeCount()
10129 iIdx = pCur->ix; in sqlite3BtreeCount()