Lines Matching refs:NCELL
218478 #define NCELL(pNode) readInt16(&(pNode)->zData[2]) macro
218894 if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){
218945 int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell;
218947 writeInt16(&pNode->zData[2], NCELL(pNode)-1);
218966 nCell = NCELL(pNode);
219041 assert( iCell<NCELL(pNode) );
219055 assert( iCell<NCELL(pNode) );
219498 int nCell = NCELL(pNode);
219760 nCell = NCELL(pNode);
219848 if( p->iCell>=NCELL(pNode) ){
219870 if( p->iCell>=NCELL(pNode) ) return SQLITE_ABORT;
220365 int nCell = NCELL(pNode);
220683 int nCell = NCELL(pNode);
220772 for(i=0; i<NCELL(pRight); i++){
220783 for(i=0; i<NCELL(pLeft); i++){
220902 int nCell = NCELL(pNode);
220945 if( NCELL(pNode)<RTREE_MINCELLS(pRtree) ){
220992 int nCell = NCELL(pNode);
221080 if( rc==SQLITE_OK && pRtree->iDepth>0 && NCELL(pRoot)==1 ){
221873 if( nData<4+NCELL(&node)*tree.nBytesPerCell ) return;
221876 for(ii=0; ii<NCELL(&node); ii++){