Searched refs:is_empty (Results 1 - 25 of 124) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.hpp81 return ((is_empty() && mr2.is_empty()) ||
88 bool is_empty() const { return word_size() == 0; } function in class:VALUE_OBJ_CLASS_SPEC
H A DmemRegion.cpp45 if (is_empty()) return mr2;
46 if (mr2.is_empty()) return MemRegion(start(), end());
/openjdk7/hotspot/src/os/solaris/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c115 int is_empty; /* is section empty? */ local
136 is_empty = ((Elf64_Shdr *) shdr)->sh_addr == 0 &&
140 is_empty = ((Elf32_Shdr *) shdr)->sh_addr == 0 &&
144 if (is_empty && has_flag_set) {
/openjdk7/jdk/make/tools/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c115 int is_empty; /* is section empty? */ local
136 is_empty = ((Elf64_Shdr *) shdr)->sh_addr == 0 &&
140 is_empty = ((Elf32_Shdr *) shdr)->sh_addr == 0 &&
144 if (is_empty && has_flag_set) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Dstack.hpp107 inline bool is_empty() const { return this->_cur_seg == NULL; } function in class:Stack
110 // Performance sensitive code should use is_empty() instead of size() == 0 and
115 return is_empty() ? 0 : this->_full_seg_size + this->_cur_seg_size;
194 bool is_empty() const { return _cur_seg == NULL; } function in class:StackIterator
H A Darray.cpp50 if (!is_empty()) qsort(_data, length(), esize, f);
53 if (!is_empty()) qsort(_data, length(), esize, f);
H A Dstack.inline.hpp71 assert(!is_empty(), "popping from an empty stack");
165 const bool at_empty_transition = is_empty();
225 assert(at_empty_transition || is_empty() == (size() == 0), "mismatch");
228 if (is_empty()) {
269 assert(!is_empty(), "no items left");
H A Darray.hpp78 bool is_empty() const { return length() == 0; } function in class:ResourceArray
112 bool is_empty() const { return length() == 0; } function in class:CHeapArray
202 assert(!is_empty(), "stack is empty"); \
207 assert(!is_empty(), "stack is empty"); \
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.hpp62 bool is_empty();
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp42 bool is_empty() const { return (size() == 0); } function in class:StackValueCollection
/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.hpp71 bool is_empty() const { return _ic_site == NULL; } function in class:ICStub
130 static bool is_empty();
H A DicBuffer.cpp64 if (!is_empty()) {
172 bool InlineCacheBuffer::is_empty() { function in class:InlineCacheBuffer
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.cpp82 while (!_revisit_klass_stack.is_empty()) {
97 assert(_marking_stack.is_empty(), "Marking stack should be empty");
104 while (!_revisit_mdo_stack.is_empty()) {
123 while (!_marking_stack.is_empty()) {
129 if (!_objarray_stack.is_empty()) {
134 } while (!_marking_stack.is_empty() || !_objarray_stack.is_empty());
174 while (!iter.is_empty()) {
194 while (!_preserved_oop_stack.is_empty()) {
H A DmutableSpace.cpp46 if (!mr.is_empty()) {
79 if (last_setup_region().is_empty()) {
86 if (intersection.is_empty()) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1MarkSweep.cpp161 assert(GenMarkSweep::_marking_stack.is_empty(),
173 assert(GenMarkSweep::_marking_stack.is_empty(),
178 assert(GenMarkSweep::_marking_stack.is_empty(), "just drained");
185 assert(GenMarkSweep::_marking_stack.is_empty(),
372 assert(hr->is_empty(), "Should have been cleared in phase 2.");
H A DheapRegionSeq.cpp44 if (at(curr)->is_empty()) {
63 assert(at(i)->is_empty(), "post-condition");
146 if (!at(index)->is_empty()) {
228 if (!cur->is_empty()) break;
272 guarantee(hr->is_empty(), "sanity");
H A DheapRegionSet.cpp60 if (hr->is_empty()) {
64 if (!hr->is_empty()) {
105 guarantee(( is_empty() && length() == 0 && region_num() == 0 &&
107 (!is_empty() && length() >= 0 && region_num() >= 0 &&
227 if (proxy_set->is_empty()) return;
265 if (from_list->is_empty()) return;
304 if (from_list->is_empty()) return;
357 assert(!is_empty(), hrs_ext_msg(this, "pre-condition"));
H A DheapRegionSet.inline.hpp140 assert(!is_empty(), hrs_ext_msg(this, "the list should not be empty"));
160 if (!is_empty()) {
H A Dg1AllocRegion.cpp96 assert(!alloc_region->is_empty(),
162 assert(alloc_region != NULL && !alloc_region->is_empty(),
H A Dg1AllocRegion.inline.hpp46 assert(!alloc_region->is_empty(), err_msg("pre-condition"));
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsCompactionManager.cpp168 assert(region_list(list_index)->is_empty(), "Not empty");
180 assert(manager_array(i)->revisit_klass_stack()->is_empty(), "sanity");
181 assert(manager_array(i)->revisit_mdo_stack()->is_empty(), "sanity");
221 } while (!region_stack()->is_empty());
H A DgcTaskManager.cpp154 assert(that->is_empty(), "should be empty");
181 if (is_empty()) {
204 if (list->is_empty()) {
209 if (is_empty()) {
237 assert(!is_empty(), "shouldn't dequeue from empty list");
254 assert(!is_empty(), "shouldn't dequeue from empty list");
448 assert(queue()->is_empty(), "still have queued work");
639 (queue()->is_empty() && !should_release_resources(which))) {
647 queue()->is_empty() ? "true" : "false",
656 if (!queue()->is_empty()) {
[all...]
H A DpsCompactionManager.hpp218 return _marking_stack.is_empty() && _objarray_stack.is_empty();
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.hpp80 bool is_empty();
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp426 if (cs->is_empty()) continue; // skip trivial section
453 if (!cs->is_empty()) {
482 assert(cs->is_empty() == dest_cs->is_empty(), "sanity");
496 if (!cur_cs->is_empty()) {
532 assert(!(cs->is_empty() && cs->locs_count() > 0), "sanity");
533 if (cs->is_empty()) continue; // skip trivial section
642 if (cs->is_empty()) continue; // skip trivial section
694 if (!sect->is_empty()) {
715 } else if (sect->is_empty()) {
[all...]

Completed in 3312 milliseconds

12345