Searched refs:is_full (Results 1 - 12 of 12) sorted by relevance

/openjdk10/hotspot/src/share/vm/utilities/
H A DchunkedList.hpp49 bool is_full() const { function in class:ChunkedList
60 assert(!is_full(), "Buffer is full");
H A Dstack.hpp113 inline bool is_full() const { return this->_full_seg_size >= this->max_size(); } function in class:Stack
116 // is_full() instead of size() == max_size(). Using a conditional here allows
H A Dstack.inline.hpp62 assert(!is_full(), "pushing onto a full stack");
H A DbitMap.hpp288 bool is_full() const;
H A DgrowableArray.hpp207 bool is_full() const { return _len == _max; } function in class:GrowableArray
H A DbitMap.cpp570 bool BitMap::is_full() const {
/openjdk10/hotspot/src/share/vm/classfile/
H A DmetadataOnStackMark.cpp128 assert(!allocated->is_full(), "Should not be full: " PTR_FORMAT, p2i(allocated));
139 if (buffer != NULL && buffer->is_full()) {
/openjdk10/hotspot/test/native/utilities/
H A Dtest_bitMap_setops.cpp158 // bool is_full();
166 EXPECT_FALSE(x.is_full());
172 EXPECT_FALSE(x.is_full());
178 EXPECT_TRUE(x.is_full());
187 EXPECT_TRUE(x.is_full());
195 EXPECT_FALSE(aligned.is_full());
196 EXPECT_TRUE(x.is_full());
202 EXPECT_FALSE(x.is_full());
H A Dtest_chunkedList.cpp47 ASSERT_TRUE(buffer.is_full());
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1StringDedupQueue.cpp81 if (!worker_queue.is_full()) {
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DpsParallelCompact.hpp753 // single subclass that uses it to avoid making is_full() virtual, and thus
768 inline bool is_full() const;
813 inline bool ParMarkBitMapClosure::is_full() const {
H A DpsParallelCompact.cpp2842 if (closure.is_full()) {
3033 assert(is_full(), "sanity");
3148 return is_full() ? ParMarkBitMap::full : ParMarkBitMap::incomplete;

Completed in 111 milliseconds