Lines Matching refs:Depth
414 uint32_t Depth = 0; in extractDIEsToVector() local
418 Depth)) { in extractDIEsToVector()
437 ++Depth; in extractDIEsToVector()
438 else if (Depth == 0) in extractDIEsToVector()
442 if (Depth > 0) in extractDIEsToVector()
443 --Depth; in extractDIEsToVector()
444 if (Depth == 0) in extractDIEsToVector()
753 const uint32_t Depth = Die->getDepth(); in getParent() local
755 if (Depth == 0) in getParent()
758 if (Depth == 1) in getParent()
761 const uint32_t ParentDepth = Depth - 1; in getParent()
772 uint32_t Depth = Die->getDepth(); in getSibling() local
774 if (Depth == 0) in getSibling()
783 if (DieArray[I].getDepth() == Depth) in getSibling()
792 uint32_t Depth = Die->getDepth(); in getPreviousSibling() local
794 if (Depth == 0) in getPreviousSibling()
800 if (DieArray[I].getDepth() == Depth - 1) in getPreviousSibling()
802 if (DieArray[I].getDepth() == Depth) in getPreviousSibling()
823 uint32_t Depth = Die->getDepth(); in getLastChild() local
826 if (DieArray[I].getDepth() == Depth + 1 && in getLastChild()
829 assert(DieArray[I].getDepth() > Depth && "Not processing children?"); in getLastChild()