Lines Matching refs:rightChild
10689 Node* rightChild = vma_new(GetAllocationCallbacks(), Node)(); in Alloc() local
10694 leftChild->buddy = rightChild; in Alloc()
10696 rightChild->offset = currNode->offset + LevelToNodeSize(childrenLevel); in Alloc()
10697 rightChild->type = Node::TYPE_FREE; in Alloc()
10698 rightChild->parent = currNode; in Alloc()
10699 rightChild->buddy = leftChild; in Alloc()
10706 AddToFreeListFront(childrenLevel, rightChild); in Alloc()
10775 const Node* const rightChild = leftChild->buddy; in ValidateNode() local
10776 VMA_VALIDATE(rightChild->offset == curr->offset + childrenLevelNodeSize); in ValidateNode()
10777 if(!ValidateNode(ctx, curr, rightChild, childrenLevel, childrenLevelNodeSize)) in ValidateNode()
10889 const Node* const rightChild = leftChild->buddy; in CalcAllocationStatInfoNode() local
10890 CalcAllocationStatInfoNode(outInfo, rightChild, childrenNodeSize); in CalcAllocationStatInfoNode()
10974 const Node* const rightChild = leftChild->buddy; in PrintDetailedMapNode() local
10975 PrintDetailedMapNode(json, rightChild, childrenNodeSize); in PrintDetailedMapNode()