Lines Matching defs:rootPtr
73 Node *rootPtr; /* Pointer to root of B-tree. */
215 register Node *rootPtr;
226 rootPtr = (Node *) ckalloc(sizeof(Node));
229 rootPtr->parentPtr = NULL;
230 rootPtr->nextPtr = NULL;
231 rootPtr->summaryPtr = NULL;
232 rootPtr->level = 0;
233 rootPtr->children.linePtr = linePtr;
234 rootPtr->numChildren = 2;
235 rootPtr->numLines = 2;
237 linePtr->parentPtr = rootPtr;
247 linePtr2->parentPtr = rootPtr;
258 treePtr->rootPtr = rootPtr;
288 DestroyNode(treePtr->rootPtr);
836 nodePtr = treePtr->rootPtr;
2615 nodePtr = treePtr->rootPtr;
2616 CheckNodeConsistency(treePtr->rootPtr);
2886 treePtr->rootPtr = newPtr;
2938 treePtr->rootPtr = nodePtr->children.nodePtr;
2939 treePtr->rootPtr->parentPtr = NULL;
3229 return treePtr->rootPtr->numLines - 1;