Home
last modified time | relevance | path

Searched refs:is_free (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/graph/
Dedge_coloring.hpp32 bool is_free(const Graph& g, ColorMap color, in is_free() function
66 if (is_free(g, color, fan.back(), get(color, e)) in maximal_fan()
82 while (!is_free(g, color, u, c)) in find_free_color()
152 return is_free(graph, color, u, d); in operator ()()
/third_party/python/Lib/
Dsymtable.py199 is_free = lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) == FREE function
200 self.__frees = self.__idents_matching(is_free)
273 def is_free(self): member in Symbol
/third_party/python/Lib/test/
Dtest_symtable.py131 self.assertTrue(self.internal.lookup("x").is_free())
/third_party/python/Doc/library/
Dsymtable.rst165 .. method:: is_free()
/third_party/mesa3d/src/amd/compiler/
Daco_register_allocation.cpp843 auto is_free = [&](PhysReg reg_index) in get_reg_simple() local
857 reg_it = std::find_if(reg_it, end_it, is_free); in get_reg_simple()
858 auto next_nonfree_it = std::find_if_not(reg_it, end_it, is_free); in get_reg_simple()
907 bool is_valid = std::all_of(std::next(reg_win.begin()), reg_win.end(), is_free); in get_reg_simple()