Lines Matching refs:iCell

71926   int iCell,              /* The cell index.  First cell is 0 */
71929 pPage->xParseCell(pPage, findCell(pPage, iCell), pInfo);
72108 static u16 cellSize(MemPage *pPage, int iCell){
72109 return pPage->xCellSize(pPage, findCell(pPage, iCell));
78370 int iCell = (iOld + pPg->aiOvfl[i]) - iNew;
78371 if( iCell>=0 && iCell<nNew ){
78372 pCellptr = &pPg->aCellIdx[iCell * 2];
78373 if( nCell>iCell ){
78374 memmove(&pCellptr[2], pCellptr, (nCell - iCell) * 2);
78377 cachedCellSize(pCArray, iCell+iNew);
78380 iCell+iNew, 1, pCArray
210561 u8 iCell; /* Cell index within the node */
211133 int iCell /* Index into pNode into which pCell is written */
211136 u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
211147 static void nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell){
211148 u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
211150 int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell;
211244 int iCell /* The cell index from which to extract the ID */
211246 assert( iCell<NCELL(pNode) );
211247 return readInt64(&pNode->zData[4 + pRtree->nBytesPerCell*iCell]);
211256 int iCell, /* The index of the cell within the node */
211260 assert( iCell<NCELL(pNode) );
211261 readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord);
211271 int iCell, /* Index of the cell within the node */
211277 pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell);
211278 pData = pNode->zData + (12 + pRtree->nBytesPerCell*iCell);
211857 p->iLevel, p->id, p->iCell, p->rScore, p->eWithin
211951 pCellData = pNode->zData + (4+pRtree->nBytesPerCell*p->iCell);
211952 while( p->iCell<nCell ){
211967 p->iCell++;
211973 p->iCell++;
211983 x.iCell = 0;
211986 x.iCell = p->iCell - 1;
211988 if( p->iCell>=nCell ){
211997 p->iCell = x.iCell;
212001 if( p->iCell>=nCell ){
212037 if( p->iCell>=NCELL(pNode) ){
212040 *pRowid = nodeGetRowid(RTREE_OF_CURSOR(pCsr), pNode, p->iCell);
212059 if( p->iCell>=NCELL(pNode) ) return SQLITE_ABORT;
212061 sqlite3_result_int64(ctx, nodeGetRowid(pRtree, pNode, p->iCell));
212063 nodeGetCoord(pRtree, pNode, p->iCell, i-1, &c);
212081 nodeGetRowid(pRtree, pNode, p->iCell));
212172 int iCell = 0;
212202 rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell);
212203 p->iCell = (u8)iCell;
212280 pNew->iCell = 0;
212549 int iCell;
212561 for(iCell=0; iCell<nCell; iCell++){
212563 nodeGetCell(pRtree, pNode, iCell, &cell);
212578 for(iCell=0; iCell<nCell; iCell++){
212582 nodeGetCell(pRtree, pNode, iCell, &cell);
212586 if( iCell==0
212622 int iCell;
212629 rc = nodeParentIndex(pRtree, p, &iCell);
212635 nodeGetCell(pRtree, pParent, iCell, &cell);
212638 nodeOverwriteCell(pRtree, pParent, &cell, iCell);
212946 int iCell;
212947 rc = nodeParentIndex(pRtree, pLeft, &iCell);
212949 nodeOverwriteCell(pRtree, pParent, &leftbbox, iCell);
213049 int iCell;
213054 rc = nodeParentIndex(pRtree, pNode, &iCell);
213058 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
213122 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
213133 nodeDeleteCell(pRtree, pNode, iCell);
213232 int iCell; /* Index of iDelete cell in pLeaf */
213253 rc = nodeRowidIndex(pRtree, pLeaf, iDelete, &iCell);
213255 rc = deleteCell(pRtree, pLeaf, iCell, 0);
214322 int iCell, /* Cell number to use in error messages */
214337 "Dimension %d of cell %d on node %lld is corrupt", i, iCell, iNode
214350 , i, iCell, iNode
215973 int iCell = 0;
215995 rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell);
215996 p->iCell = (u8)iCell;
216067 pNew->iCell = 0;
216167 nodeGetRowid(pRtree, pNode, p->iCell));
223644 int iCell; /* Current cell */
224135 pCsr->aPage[0].iCell = 0;
224150 while( p->iCell<p->nCell ){
224151 StatCell *pCell = &p->aCell[p->iCell];
224173 "%s%.3x+%.6x", p->zPath, p->iCell, iOvfl
224179 p->iCell++;
224182 if( !p->iRightChildPg || p->iCell>p->nCell ){
224199 if( p->iCell==p->nCell ){
224202 p[1].iPgno = p->aCell[p->iCell].iChildPg;
224206 p[1].iCell = 0;
224208 p[1].zPath = z = sqlite3_mprintf("%s%.3x/", p->zPath, p->iCell);
224211 p->iCell++;