HomeSort by relevance Sort by last modified time
    Searched refs:NodeStore (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
trie-node.h 53 std::forward_list<TrieNode<T>> &NodeStore,
58 NodeStore.push_front(TrieNode<T>{
60 auto I = NodeStore.begin();
77 mergeTrieNodes(*(iter->second), *Callee, Node, NodeStore, MergeFn));
xray-converter.cpp 210 std::forward_list<StackTrieNode> &NodeStore) {
222 NodeStore.push_front({FuncId, Parent, {}, {(*id_counter)++, {}}});
223 StackTrieNode *CurrentStack = &NodeStore.front();
229 NodeStore.push_front({FuncId, Parent, {}, {stack_id, std::move(siblings)}});
230 StackTrieNode *CurrentStack = &NodeStore.front();
276 std::forward_list<StackTrieNode> NodeStore{};
299 &id_counter, NodeStore);
xray-stacks.cpp 328 std::forward_list<StackTrieNode> NodeStore;
336 NodeStore.push_front(StackTrieNode{FuncId, Parent, {}, {{}, {}}});
337 auto I = NodeStore.begin();
522 RootVector mergeAcrossThreads(std::forward_list<StackTrieNode> &NodeStore) {
535 **MaybeFoundIter, *Node, nullptr, NodeStore, mergeStackDuration));

Completed in 168 milliseconds