Lines Matching refs:Depth
358 uint32_t Depth = 0; in extractDIEsToVector() local
362 Depth)) { in extractDIEsToVector()
381 ++Depth; in extractDIEsToVector()
384 if (Depth > 0) in extractDIEsToVector()
385 --Depth; in extractDIEsToVector()
386 if (Depth == 0) in extractDIEsToVector()
661 const uint32_t Depth = Die->getDepth(); in getParent() local
663 if (Depth == 0) in getParent()
666 if (Depth == 1) in getParent()
669 const uint32_t ParentDepth = Depth - 1; in getParent()
680 uint32_t Depth = Die->getDepth(); in getSibling() local
682 if (Depth == 0) in getSibling()
691 if (DieArray[I].getDepth() == Depth) in getSibling()
700 uint32_t Depth = Die->getDepth(); in getPreviousSibling() local
702 if (Depth == 0) in getPreviousSibling()
708 if (DieArray[I].getDepth() == Depth - 1) in getPreviousSibling()
710 if (DieArray[I].getDepth() == Depth) in getPreviousSibling()
731 uint32_t Depth = Die->getDepth(); in getLastChild() local
734 if (DieArray[I].getDepth() == Depth + 1 && in getLastChild()
737 assert(DieArray[I].getDepth() > Depth && "Not processing children?"); in getLastChild()