Home | History | Annotate | Download | only in rtree

Lines Matching refs:aHash

134 /* Size of hash table Rtree.aHash. This hash table is not expected to
152 RtreeNode *aHash[HASHSIZE]; /* Hash table of in-memory nodes. */
397 ** in the Rtree.aHash table.
412 for(p=pRtree->aHash[nodeHash(iNode)]; p && p->iNode!=iNode; p=p->pNext);
423 pNode->pNext = pRtree->aHash[iHash];
424 pRtree->aHash[iHash] = pNode;
433 pp = &pRtree->aHash[nodeHash(pNode->iNode)];