Home | History | Annotate | Download | only in rtree

Lines Matching refs:pRight

1994   RtreeNode *pRight,
2075 RtreeNode *pTarget = (ii<iBestSplit)?pLeft:pRight;
2096 RtreeNode *pRight,
2116 nodeInsertCell(pRtree, pRight, &aCell[iRightSeed]);
2127 if( (RTREE_MINCELLS(pRtree)-NCELL(pRight)==i)
2130 nodeInsertCell(pRtree, pRight, pNext);
2177 RtreeNode *pRight = 0;
2200 pRight = nodeNew(pRtree, pNode);
2207 pRight = nodeNew(pRtree, pLeft->pParent);
2211 if( !pLeft || !pRight ){
2217 memset(pRight->zData, 0, pRtree->iNodeSize);
2219 rc = AssignCells(pRtree, aCell, nCell, pLeft, pRight, &leftbbox, &rightbbox);
2225 ** nodeWrite(). Node pRight always needs a node number, as it was created
2229 if( SQLITE_OK!=(rc = nodeWrite(pRtree, pRight))
2235 rightbbox.iRowid = pRight->iNode;
2255 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
2259 for(i=0; i<NCELL(pRight); i++){
2260 i64 iRowid = nodeGetRowid(pRtree, pRight, i);
2261 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
2282 rc = nodeRelease(pRtree, pRight);
2283 pRight = 0;
2291 nodeRelease(pRtree, pRight);