HomeSort by: relevance | last modified time | path
    Searched refs:Callees (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
function_call_trie_test.cc 172 ASSERT_FALSE(F1.Callees.empty());
174 const auto &F2 = *F1.Callees[0].NodePtr;
176 ASSERT_FALSE(F2.Callees.empty());
178 const auto &F3 = *F2.Callees[0].NodePtr;
180 ASSERT_TRUE(F3.Callees.empty());
210 if (F->Callees.empty() && i != 31)
211 FAIL() << "Empty callees for FId " << F->FId;
213 F = F->Callees[0].NodePtr;
243 ASSERT_EQ(R0Orig.Callees.size(), 2u);
244 ASSERT_EQ(R0Copy.Callees.size(), 2u)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_function_call_trie.h 37 /// Each node in the trie will also contain a list of callees, represented using
44 /// [function id node] -> [callees] [cumulative time]
89 /// representation of the various data structures (the list of callees must be
107 // A Node in the FunctionCallTrie gives us a list of callees, the cumulative
114 NodeIdPairArray Callees;
397 auto* Callee = TopNode->Callees.find_element(
412 TopNode->Callees.AppendEmplace(NewNode, FId);
518 for (const auto Callee : NP.Node->Callees) {
525 if (UNLIKELY(NP.NewNode->Callees.AppendEmplace(NewNode, Callee.FId) ==
540 // data from the original (current) trie, along with all its callees
    [all...]
xray_profile_collector.cc 192 for (const auto C : Node->Callees)

Completed in 12 milliseconds