Lines Matching refs:aCell
220319 RtreeCell *aCell, argument
220329 x1 = MAX(DCOORD(p->aCoord[jj]), DCOORD(aCell[ii].aCoord[jj]));
220330 x2 = MIN(DCOORD(p->aCoord[jj+1]), DCOORD(aCell[ii].aCoord[jj+1]));
220497 RtreeCell *aCell, argument
220510 SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare);
220511 SortByDimension(pRtree, aRight, nRight, iDim, aCell, aSpare);
220516 RtreeDValue xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
220517 RtreeDValue xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
220518 RtreeDValue xright1 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2]);
220519 RtreeDValue xright2 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2+1]);
220537 RtreeDValue xleft1 = aCell[aIdx[jj-1]].aCoord[iDim*2];
220538 RtreeDValue xleft2 = aCell[aIdx[jj-1]].aCoord[iDim*2+1];
220539 RtreeDValue xright1 = aCell[aIdx[jj]].aCoord[iDim*2];
220540 RtreeDValue xright2 = aCell[aIdx[jj]].aCoord[iDim*2+1];
220553 RtreeCell *aCell, argument
220583 SortByDimension(pRtree, aaSorted[ii], nCell, ii, aCell, aSpare);
220604 memcpy(&left, &aCell[aaSorted[ii][0]], sizeof(RtreeCell));
220605 memcpy(&right, &aCell[aaSorted[ii][nCell-1]], sizeof(RtreeCell));
220608 cellUnion(pRtree, &left, &aCell[aaSorted[ii][kk]]);
220610 cellUnion(pRtree, &right, &aCell[aaSorted[ii][kk]]);
220634 memcpy(pBboxLeft, &aCell[aaSorted[iBestDim][0]], sizeof(RtreeCell));
220635 memcpy(pBboxRight, &aCell[aaSorted[iBestDim][iBestSplit]], sizeof(RtreeCell));
220639 RtreeCell *pCell = &aCell[aaSorted[iBestDim][ii]];
220684 RtreeCell *aCell; local
220696 aCell = sqlite3_malloc64((sizeof(RtreeCell)+sizeof(int))*(nCell+1));
220697 if( !aCell ){
220701 aiUsed = (int *)&aCell[nCell+1];
220704 nodeGetCell(pRtree, pNode, i, &aCell[i]);
220707 memcpy(&aCell[nCell], pCell, sizeof(RtreeCell));
220730 rc = splitNodeStartree(pRtree, aCell, nCell, pLeft, pRight,
220797 sqlite3_free(aCell);
231481 StatCell *aCell; /* Array of parsed cells */ member
231678 if( p->aCell ){
231680 sqlite3_free(p->aCell[i].aOvfl);
231682 sqlite3_free(p->aCell);
231685 p->aCell = 0;
231811 p->aCell = sqlite3_malloc64((p->nCell+1) * sizeof(StatCell));
231812 if( p->aCell==0 ) return SQLITE_NOMEM_BKPT;
231813 memset(p->aCell, 0, (p->nCell+1) * sizeof(StatCell));
231816 StatCell *pCell = &p->aCell[i];
231982 StatCell *pCell = &p->aCell[p->iCell];
232033 p[1].iPgno = p->aCell[p->iCell].iChildPg;
232081 nPayload += p->aCell[i].nLocal;