HomeSort by relevance Sort by last modified time
    Searched full:prtree (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 226 ** formatted as a double. This macro assumes that local variable pRtree points
230 (pRtree->eCoordType==RTREE_COORD_REAL32) ? \
390 static void nodeZero(Rtree *pRtree, RtreeNode *p){
391 memset(&p->zData[2], 0, pRtree->iNodeSize-2);
410 static RtreeNode *nodeHashLookup(Rtree *pRtree, i64 iNode){
412 for(p=pRtree->aHash[nodeHash(iNode)]; p && p->iNode!=iNode; p=p->pNext);
419 static void nodeHashInsert(Rtree *pRtree, RtreeNode *pNode){
423 pNode->pNext = pRtree->aHash[iHash];
424 pRtree->aHash[iHash] = pNode;
430 static void nodeHashDelete(Rtree *pRtree, RtreeNode *pNode)
    [all...]
  /external/llvm/test/CodeGen/X86/
2009-10-19-EmergencySpill.ll 9 define fastcc void @nodeOverwriteCell(%struct.Rtree* nocapture %pRtree, %struct.RtreeNode* nocapture %pNode, %struct.RtreeCell* nocapture %pCell, i32 %iCell) nounwind ssp {
25 %11 = getelementptr inbounds %struct.Rtree* %pRtree, i64 0, i32 3 ; <i32*> [#uses=1]

Completed in 186 milliseconds