Home
last modified time | relevance | path

Searched refs:size_ (Results 1 – 3 of 3) sorted by relevance

/petsc/src/sys/objects/device/impls/
H A Dsegmentedmempool.hpp110 PETSC_NODISCARD size_type size() const noexcept { return size_; } in size()
114 PETSC_NODISCARD size_type capacity() const noexcept { return size_; } in capacity()
130 size_type size_ = 0; // size of the chunk member in Petsc::memory::impl::MemoryChunk
154 inline MemoryChunk<E>::MemoryChunk(size_type start, size_type size) noexcept : size_(size), start_(… in MemoryChunk()
165 …ange(other.stream_id_, device::DefaultStream::INVALID_ID)), size_(util::exchange(other.size_, 0)),… in MemoryChunk()
177 size_ = util::exchange(other.size_, 0); in operator =()
273 size_ = newsize; in resize()
328 PETSC_NODISCARD size_type size() const noexcept { return size_; } in size()
335 size_type size_{}; member in Petsc::memory::impl::MemoryBlock
354 size_ = 0; in clear_()
[all …]
/petsc/include/
H A Dpetscerror.h957 PetscMPIInt size_; \
958 (void)MPI_Comm_size(comm, &size_); \
959 …if (PetscCIEnabledPortableErrorOutput && (size_ == PetscGlobalSize || petscabortmpifinalize) && ie…
/petsc/src/sys/objects/device/interface/
H A Dmemory.cxx66 …tscMemType mtype_, PetscObjectId id_, std::size_t size_) noexcept : mtype(mtype_), id(id_), size(s… in PointerAttributes() argument