Home | History | Annotate | Download | only in Core

Lines Matching defs:New

230   // Okay, this split the subtree, producing a new value and two children to
233 // Now that we have two nodes and a new element, insert the perclated value
235 // the new one.
301 // Create the new child node.
305 // into the new node.
306 DeltaTreeInteriorNode *New = new DeltaTreeInteriorNode();
307 memcpy(&New->Children[0], &IN->Children[WidthFactor],
309 NewNode = New;
311 // Just create the new leaf node.
312 NewNode = new DeltaTreeNode();
341 /// verify consistency. This is useful for debugging new changes to the tree.
388 Root = new DeltaTreeNode();
394 Root = new DeltaTreeNode();
457 Root = MyRoot = new DeltaTreeInteriorNode(InsertRes);