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

  /external/fio/
workqueue.h 14 struct flist_head work_list; member in struct:submit_worker
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 290 WorkListTy work_list; local
295 work_list.push(*entry_it);
297 // add section from the work_list to the referencedSections until every
299 while (!work_list.empty()) {
300 const LDSection* sect = work_list.front();
301 work_list.pop();
319 work_list.push(*it);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
validate_cfg.cpp 75 /// Returns true if a block with @p id is found in the @p work_list vector
77 /// @param[in] work_list Set of blocks visited in the the depth first traversal
81 /// @return true if the edge work_list.back().block->id() => id is a back-edge
82 bool FindInWorkList(const vector<block_info>& work_list, uint32_t id) {
83 for (const auto b : work_list) {
116 /// NOTE: work_list is the sequence of nodes from the root node to the node
118 vector<block_info> work_list; local
119 work_list.reserve(10);
121 work_list.push_back({entry, begin(*successor_func(entry))});
125 while (!work_list.empty())
    [all...]

Completed in 2150 milliseconds