Home
last modified time | relevance | path

Searched refs:my_ancestor (Results 1 – 2 of 2) sorted by relevance

/dports/math/libmesh/libmesh-1.6.2/src/geom/
H A Delem.C1166 Elem * my_ancestor = this->parent(); in make_links_to_me_remote() local
1167 libmesh_assert(my_ancestor); in make_links_to_me_remote()
1168 while (!neigh->has_neighbor(my_ancestor)) in make_links_to_me_remote()
1170 my_ancestor = my_ancestor->parent(); in make_links_to_me_remote()
1171 libmesh_assert(my_ancestor); in make_links_to_me_remote()
1177 neigh->total_family_tree_by_subneighbor (family, my_ancestor, this); in make_links_to_me_remote()
1268 Elem * my_ancestor = this->parent(); in remove_links_to_me() local
1269 libmesh_assert(my_ancestor); in remove_links_to_me()
1270 while (!neigh->has_neighbor(my_ancestor)) in remove_links_to_me()
1272 my_ancestor = my_ancestor->parent(); in remove_links_to_me()
[all …]
/dports/math/libmesh/libmesh-1.6.2/include/geom/
H A Delem.h2445 for (const Elem * my_ancestor = this->parent(); in subactive() local
2446 my_ancestor != nullptr; in subactive()
2447 my_ancestor = my_ancestor->parent()) in subactive()
2448 if (my_ancestor->active()) in subactive()