Home
last modified time | relevance | path

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

/petsc/include/petsc/private/cpp/
H A Dunordered_map.hpp300 …table_iterator(table_type *map, khash_int it) noexcept : map_{std::move(map)}, it_{std::move(it)} … in table_iterator()
309 …or(const table_iterator<other_is_const_it> &other) noexcept : table_iterator{other.map_, other.it_} in table_iterator()
319 it_ = other.it_; in operator =()
336 --it_; in operator --()
337 } while ((it_ > map_begin) && !map_->occupied(it_)); in operator --()
360 ++it_; in operator ++()
361 } while (it_ != map_end && !map_->occupied(it_)); in operator ++()
379 PetscFunctionReturn(PETSC_OPTIONAL_GET_KEY(map_->values_[it_])); in operator *()
386 PetscFunctionReturn(std::addressof(PETSC_OPTIONAL_GET_KEY(map_->values_[it_]))); in operator ->()
392 return std::tie(map_, it_) == std::tie(r.map_, r.it_); in operator ==()
[all …]
/petsc/src/sys/objects/device/interface/
H A Dmark_dcontext.cxx367 for (auto it_ = map.begin(); it_ != map.end(); ++it_) { in PetscGetMarkedObjectMap_Internal() local
368 auto &it = *it_; in PetscGetMarkedObjectMap_Internal()