Lines Matching refs:pRight
2462 RtreeNode *pRight, in splitNodeStartree() argument
2543 RtreeNode *pTarget = (ii<iBestSplit)?pLeft:pRight; in splitNodeStartree()
2594 RtreeNode *pRight = 0; in SplitNode() local
2617 pRight = nodeNew(pRtree, pNode); in SplitNode()
2624 pRight = nodeNew(pRtree, pLeft->pParent); in SplitNode()
2628 if( !pLeft || !pRight ){ in SplitNode()
2634 memset(pRight->zData, 0, pRtree->iNodeSize); in SplitNode()
2636 rc = splitNodeStartree(pRtree, aCell, nCell, pLeft, pRight, in SplitNode()
2647 if( SQLITE_OK!=(rc = nodeWrite(pRtree, pRight)) in SplitNode()
2653 rightbbox.iRowid = pRight->iNode; in SplitNode()
2674 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){ in SplitNode()
2678 for(i=0; i<NCELL(pRight); i++){ in SplitNode()
2679 i64 iRowid = nodeGetRowid(pRtree, pRight, i); in SplitNode()
2680 rc = updateMapping(pRtree, iRowid, pRight, iHeight); in SplitNode()
2701 rc = nodeRelease(pRtree, pRight); in SplitNode()
2702 pRight = 0; in SplitNode()
2710 nodeRelease(pRtree, pRight); in SplitNode()