/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | immutableSpace.hpp | 40 HeapWord* _end; member in class:ImmutableSpace 43 ImmutableSpace() { _bottom = NULL; _end = NULL; } 45 HeapWord* end() const { return _end; } 52 bool contains(const void* p) const { return _bottom <= p && p < _end; }
|
H A D | parGCAllocBuffer.hpp | 44 HeapWord* _end; // last allocatable address + 1 member in class:ParGCAllocBuffer 45 HeapWord* _hard_end; // _end + AlignmentReserve 78 if (pointer_delta(_end, _top) >= word_sz) { 107 assert(_end >= _top, "Negative buffer"); 108 return pointer_delta(_end, _top, HeapWordSize); 120 _end = _hard_end - AlignmentReserve; 121 assert(_end >= _top, "Negative buffer"); 152 _end = _hard_end; 153 _wasted += pointer_delta(_end, _top); // unused space 154 _top = _end; // forc [all...] |
H A D | parGCAllocBuffer.cpp | 33 _end(NULL), _hard_end(NULL), 69 if (pointer_delta(_end, _top) > FillerHeaderSize) { 84 stats->add_unused(pointer_delta(_end, _top)); 131 gclog_or_tty->print("parGCAllocBuffer: _bottom: %p _top: %p _end: %p _hard_end: %p" 133 _bottom, _top, _end, _hard_end, 191 _end = _hard_end - AlignmentReserve; 215 // Reset _hard_end to _true_end (and update _end) 219 _end = MAX2(_top, _hard_end - AlignmentReserve); 220 assert(_end <= _hard_end, "Invariant."); 230 if (retain && _top < _end) { [all...] |
H A D | gcHeapSummary.hpp | 49 HeapWord* _end; member in class:SpaceSummary 53 _start(NULL), _end(NULL), _used(0) { } 55 _start(start), _end(end), _used(used) { } 58 HeapWord* end() const { return _end; } 60 size_t size() const { return (uintptr_t)_end - (uintptr_t)_start; }
|
H A D | gcTimer.hpp | 49 jlong _end; member in class:GCPhase 61 jlong end() { return _end; } 62 void set_end(jlong time) { _end = time; }
|
H A D | mutableSpace.hpp | 73 HeapWord** end_addr() { return &_end; } 76 virtual void set_end(HeapWord* value) { _end = value; } 117 bool contains(const void* p) const { return _bottom <= p && p < _end; }
|
H A D | immutableSpace.cpp | 40 _end = end;
|
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/ |
H A D | JIS_X_0212_MS5022X_Decoder.java | 34 private int _start, _end; field in class:JIS_X_0212_MS5022X_Decoder 39 _end = 0x7E; 44 || ((byte2 < _start) || (byte2 > _end))) 46 int n = (_index1[byte1] & 0xf)*(_end - _start + 1) + (byte2 - _start);
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | stubCodeGenerator.hpp | 49 address _end; // points to the first byte after the stub code (excluded) member in class:StubCodeDesc 53 _end = end; 58 assert(_end == NULL || begin <= _end, "begin & end not properly ordered"); 77 _end = NULL; 85 address end() const { return _end; } 86 int size_in_bytes() const { return _end - _begin; } 87 bool contains(address pc) const { return _begin <= pc && pc < _end; }
|
H A D | signature.cpp | 255 _begin = _end = (is_method ? 1 : 0); // skip first '(' in method signatures 268 return _end > _signature->utf8_length(); 277 while (sig->byte_at(_end++) != ';'); 283 char c = sig->byte_at(_end); 284 while ('0' <= c && c <= '9') c = sig->byte_at(_end++); 285 while (sig->byte_at(_end) == '[') { 286 _end++; 287 c = sig->byte_at(_end); 288 while ('0' <= c && c <= '9') c = sig->byte_at(_end++); 290 switch(sig->byte_at(_end)) { [all...] |
H A D | perfMemory.hpp | 118 static char* _end; member in class:PerfMemory 135 static char* end() { return _end; } 140 return ((_start != NULL) && (addr >= _start) && (addr < _end));
|
H A D | perfMemory.cpp | 46 char* PerfMemory::_end = NULL; member in class:PerfMemory 129 _end = _start + _capacity; 195 _end = NULL; 214 if ((_top + size) >= _end) {
|
H A D | signature.hpp | 354 int _end; member in class:SignatureStream 366 if (_end >= len) { 367 _end = len + 1; 371 _begin = _end; 386 _end++; 400 int raw_length() { return _end - _begin; }
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psPromotionLAB.hpp | 51 HeapWord* _end; member in class:PSPromotionLAB 56 void set_end(HeapWord* value) { _end = value; } 61 PSPromotionLAB() : _top(NULL), _bottom(NULL), _end(NULL) { } 71 HeapWord* end() const { return _end; } 84 bool contains(const void* p) const { return _bottom <= p && p < _end; }
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciStreams.hpp | 64 address _end; // Past end of bytecodes member in class:ciBytecodeStream 71 _start = _pc = base; _end = base + size; 117 _end = _start + max; 136 if( _pc >= _end ) return EOBC(); // End-Of-Bytecodes 210 assert(_pc < _end, ""); 320 int _end; member in class:ciExceptionHandlerStream 334 _end = _method->_handler_count; 349 _end = _method->_handler_count + 1; // include the rethrow handler 372 return (_pos >= _end); 384 _end [all...] |
H A D | ciStreams.cpp | 45 int save_end = _end; 50 _end = _method->_handler_count; 60 _end = save_end; 67 int save_end = _end; 77 _end = save_end;
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | blockOffsetTable.inline.hpp | 39 if (addr >= _bottom && addr < _end) { 91 assert(_unallocated_block <= _end,
|
H A D | blockOffsetTable.hpp | 57 HeapWord* _end; // End of currently allocated region. member in class:VALUE_OBJ_CLASS_SPEC 63 _bottom(bottom), _end(end) { 64 assert(_bottom <= _end, "arguments out of order"); 72 assert(new_bottom <= _end, "new_bottom > _end"); 74 resize(pointer_delta(_end, _bottom)); 123 HeapWord* _end; member in class:BlockOffsetSharedArray 353 _end = mr.end(); 360 if (_end < new_end && !init_to_zero()) { 362 assert(_array->is_card_boundary(_end), [all...] |
H A D | generation.inline.hpp | 66 return the_space()->_end - the_space()->top();
|
H A D | threadLocalAllocBuffer.hpp | 45 HeapWord* _end; // allocation end (excluding alignment_reserve) member in class:ThreadLocalAllocBuffer 63 void set_end(HeapWord* end) { _end = end; } 110 HeapWord* end() const { return _end; } 111 HeapWord* hard_end() const { return _end + alignment_reserve(); } 162 static ByteSize end_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _end ); }
|
H A D | blockOffsetTable.cpp | 41 _reserved(reserved), _end(NULL) 77 _end = _reserved.start() + new_word_size; 120 assert(_bottom <= _end, "arguments out of order"); 352 if (p >= _end) { 528 assert(_bottom <= addr && addr < _end, 534 assert(ub < _end, "tautology (see above)"); 591 assert(_bottom <= addr && addr < _end, 597 assert(ub < _end, "tautology (see above)"); 672 assert(_bottom <= addr && addr < _end,
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1BlockOffsetTable.cpp | 38 _reserved(reserved), _end(NULL) 74 _end = _reserved.start() + new_word_size; 110 assert(_bottom <= _end, "arguments out of order"); 351 assert(_bottom <= addr && addr < _end, 357 assert(ub < _end, "tautology (see above)"); 368 assert(_bottom <= addr && addr < _end, 374 assert(ub < _end, "tautology (see above)"); 431 assert(_bottom <= addr && addr < _end, 437 assert(ub < _end, "tautology (see above)"); 462 if (_end < new_en [all...] |
H A D | g1BlockOffsetTable.hpp | 65 HeapWord* _end; // End of currently allocated region. member in class:VALUE_OBJ_CLASS_SPEC 71 _bottom(bottom), _end(end) 73 assert(_bottom <= _end, "arguments out of order"); 81 assert(new_bottom <= _end, 82 err_msg("new_bottom (" PTR_FORMAT ") > _end (" PTR_FORMAT ")", 83 new_bottom, _end)); 85 resize(pointer_delta(_end, _bottom)); 132 HeapWord* _end; member in class:G1BlockOffsetSharedArray
|
H A D | g1BlockOffsetTable.inline.hpp | 32 if (addr >= _bottom && addr < _end) { 41 if (addr >= _bottom && addr < _end) { 147 assert(_unallocated_block <= _end,
|
/openjdk7/hotspot/src/share/vm/asm/ |
H A D | codeBuffer.hpp | 88 address _end; // current end address member in class:VALUE_OBJ_CLASS_SPEC 104 _end = NULL; 125 _end = start; 139 _end = cs->_end; 147 address end() const { return _end; } 149 csize_t size() const { return (csize_t)(_end - _start); } 153 csize_t remaining() const { return (csize_t)(_limit - _end); } 166 bool is_empty() const { return _start == _end; } 173 bool contains(address pc) const { return pc >= _start && pc < _end; } [all...] |