Lines Matching refs:period
52 size_t chain_start, uint64_t period, in AllocateNode() argument
58 node->period = period; in AllocateNode()
65 AllocateNode(parent->chain, parent_length, parent->period, parent->children_period); in SplitNode()
67 parent->period = 0; in SplitNode()
68 parent->children_period = child->period + child->children_period; in SplitNode()
74 void CallChainRoot::AddCallChain(const std::vector<SampleEntry*>& callchain, uint64_t period) { in AddCallChain() argument
75 children_period += period; in AddCallChain()
78 std::unique_ptr<CallChainNode> new_node = AllocateNode(callchain, 0, period, 0); in AddCallChain()
93 p->period += period; in AddCallChain()
96 p->children_period += period; in AddCallChain()
104 std::unique_ptr<CallChainNode> new_node = AllocateNode(callchain, callchain_pos, period, 0); in AddCallChain()
112 uint64_t period1 = n1->period + n1->children_period; in CompareNodeByPeriod()
113 uint64_t period2 = n2->period + n2->children_period; in CompareNodeByPeriod()