• Home
  • Raw
  • Download

Lines Matching refs:leftChild

5675                 Node* leftChild;  member
10688 Node* leftChild = vma_new(GetAllocationCallbacks(), Node)(); in Alloc() local
10691 leftChild->offset = currNode->offset; in Alloc()
10692 leftChild->type = Node::TYPE_FREE; in Alloc()
10693 leftChild->parent = currNode; in Alloc()
10694 leftChild->buddy = rightChild; in Alloc()
10699 rightChild->buddy = leftChild; in Alloc()
10703 currNode->split.leftChild = leftChild; in Alloc()
10707 AddToFreeListFront(childrenLevel, leftChild); in Alloc()
10739 DeleteNode(node->split.leftChild->buddy); in DeleteNode()
10740 DeleteNode(node->split.leftChild); in DeleteNode()
10768 const Node* const leftChild = curr->split.leftChild; in ValidateNode() local
10769 VMA_VALIDATE(leftChild != VMA_NULL); in ValidateNode()
10770 VMA_VALIDATE(leftChild->offset == curr->offset); in ValidateNode()
10771 if(!ValidateNode(ctx, curr, leftChild, childrenLevel, childrenLevelNodeSize)) in ValidateNode()
10775 const Node* const rightChild = leftChild->buddy; in ValidateNode()
10817 node = node->split.leftChild; in FreeAtOffset()
10821 node = node->split.leftChild->buddy; in FreeAtOffset()
10887 const Node* const leftChild = node->split.leftChild; in CalcAllocationStatInfoNode() local
10888 CalcAllocationStatInfoNode(outInfo, leftChild, childrenNodeSize); in CalcAllocationStatInfoNode()
10889 const Node* const rightChild = leftChild->buddy; in CalcAllocationStatInfoNode()
10972 const Node* const leftChild = node->split.leftChild; in PrintDetailedMapNode() local
10973 PrintDetailedMapNode(json, leftChild, childrenNodeSize); in PrintDetailedMapNode()
10974 const Node* const rightChild = leftChild->buddy; in PrintDetailedMapNode()