Home
last modified time | relevance | path

Searched refs:vmap (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DValueSymbolTable.h63 ValueSymbolTable() : vmap(0) {} in ValueSymbolTable()
74 Value *lookup(StringRef Name) const { return vmap.lookup(Name); } in lookup()
78 inline bool empty() const { return vmap.empty(); } in empty()
81 inline unsigned size() const { return unsigned(vmap.size()); } in size()
93 inline iterator begin() { return vmap.begin(); } in begin()
96 inline const_iterator begin() const { return vmap.begin(); } in begin()
99 inline iterator end() { return vmap.end(); } in end()
102 inline const_iterator end() const { return vmap.end(); } in end()
130 ValueMap vmap; ///< The map that holds the symbol table. variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DValueSymbolTable.cpp35 for (const auto &VI : vmap) in ~ValueSymbolTable()
39 assert(vmap.empty() && "Values remain in symbol table!"); in ~ValueSymbolTable()
64 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); in makeUniqueName()
76 if (vmap.insert(V->getValueName())) { in reinsertValue()
95 vmap.remove(V); in removeValueName()
103 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName()
/third_party/boost/libs/graph/test/
Dbasic_planarity_test.cpp122 std::vector< vertex_t > vmap; in test_maximal_planar() local
124 vmap.push_back(add_vertex(g)); in test_maximal_planar()
132 add_edge(vmap[i], vmap[(i + 1) % num_vertices], g); in test_maximal_planar()
139 add_edge(vmap[0], vmap[i], g); in test_maximal_planar()
146 add_edge(vmap[1], vmap[i], g); in test_maximal_planar()
153 add_edge(vmap[2], vmap[4], g); in test_maximal_planar()
Dmetric_tsp_approx.cpp44 VertexIndexMap vmap, // Property maps passed by value in connectAllEuclidean() argument
64 points[vmap[*src]].x - points[vmap[*dest]].x), in connectAllEuclidean()
67 points[vmap[*dest]].y - points[vmap[*src]].y), in connectAllEuclidean()
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_sched.h122 value_index_map vmap; variable
Dsb_sched.cpp322 unsigned &id = vmap[v]; in get_value_id()
685 vmap.clear(); in reset()