Lines Matching defs:aSpare
203262 ** Arguments aIdx, aDistance and aSpare all point to arrays of size
203275 ** The aSpare array is used as temporary working space by the
203282 int *aSpare
203293 SortByDistance(aLeft, nLeft, aDistance, aSpare);
203294 SortByDistance(aRight, nRight, aDistance, aSpare);
203296 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
203297 aLeft = aSpare;
203334 ** Arguments aIdx, aCell and aSpare all point to arrays of size
203341 ** The aSpare array is used as temporary working space by the
203350 int *aSpare
203362 SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare);
203363 SortByDimension(pRtree, aRight, nRight, iDim, aCell, aSpare);
203365 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
203366 aLeft = aSpare;
203413 int *aSpare;
203427 aSpare = &((int *)&aaSorted[pRtree->nDim])[pRtree->nDim*nCell];
203435 SortByDimension(pRtree, aaSorted[ii], nCell, ii, aCell, aSpare);
203823 int *aSpare;
203844 sizeof(int) + /* aSpare array */
203851 aSpare = (int *)&aOrder[n];
203852 aDistance = (RtreeDValue *)&aSpare[n];
203879 SortByDistance(aOrder, nCell, aDistance, aSpare);