Home
last modified time | relevance | path

Searched refs:map_ (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()
318 map_ = other.map_; in operator =()
337 } while ((it_ > map_begin) && !map_->occupied(it_)); in operator --()
358 map_end = map_->bucket_count(); 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 ==()
402 table_type *map_ = nullptr; member in Petsc::khash::KHashTable::table_iterator
[all …]
/petsc/src/vec/is/utils/hdf5/
H A Dhdf5io.c75 …vate(PetscViewer viewer, HDF5ReadCtx ctx, PetscBool uncompress, PetscBool setup, PetscLayout *map_) in PetscViewerHDF5ReadSizes_Private() argument
83 if (!*map_) PetscCall(PetscLayoutCreate(PetscObjectComm((PetscObject)viewer), map_)); in PetscViewerHDF5ReadSizes_Private()
84 map = *map_; in PetscViewerHDF5ReadSizes_Private()