Searched defs:_start (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0212_MS5022X_Decoder.java34 private int _start, _end; field in class:JIS_X_0212_MS5022X_Decoder
38 _start = 0x21;
44 || ((byte2 < _start) || (byte2 > _end)))
46 int n = (_index1[byte1] & 0xf)*(_end - _start + 1) + (byte2 - _start);
/openjdk7/hotspot/src/share/vm/ci/
H A DciExceptionHandler.hpp43 int _start; member in class:ciExceptionHandler
56 _start = start;
63 int start() { return _start; }
H A DciStreams.hpp63 address _start; // Start of bytecodes member in class:ciBytecodeStream
71 _start = _pc = base; _end = base + size;
117 _end = _start + max;
121 int next_bci() const { return _pc - _start; }
122 int cur_bci() const { return _bc_start - _start; }
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.cpp45 char* PerfMemory::_start = NULL; member in class:PerfMemory
101 if (_start == NULL) {
124 (void*)_start,
128 _prologue = (PerfDataPrologue *)_start;
129 _end = _start + _capacity;
130 _top = _start + sizeof(PerfDataPrologue);
160 if (_start != NULL && _prologue->overflow != 0) {
185 if (_start != NULL) {
194 _start = NULL;
H A DperfMemory.hpp117 static char* _start; member in class:PerfMemory
134 static char* start() { return _start; }
136 static size_t used() { return (size_t) (_top - _start); }
140 return ((_start != NULL) && (addr >= _start) && (addr < _end));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArray.java40 public CharArray(char[] _ch, int _start, int _length, boolean copy) { argument
41 set(_ch, _start, _length, copy);
44 public final void set(char[] _ch, int _start, int _length, boolean copy) { argument
49 System.arraycopy(_ch, _start, ch, 0, _length);
52 start = _start;
H A DCharArrayIntMap.java41 final int _start; field in class:CharArrayIntMap.Entry
48 _start = start;
56 int i = _start;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DTestSeq.java82 private InstructionHandle _start = null; field in class:TestSeq
221 if (_start != null) {
222 return _start;
228 return (_start = getTemplateHandle(_default));
287 return (_start = fail);
/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.hpp42 HeapWord* _start; member in class:VALUE_OBJ_CLASS_SPEC
46 MemRegion() : _start(NULL), _word_size(0) {};
48 _start(start), _word_size(word_size) {};
50 _start(start), _word_size(pointer_delta(end, start)) {
54 MemRegion(const MemRegion& mr): _start(mr._start), _word_size(mr._word_size) {}
63 HeapWord* start() const { return _start; }
64 HeapWord* end() const { return _start + _word_size; }
65 HeapWord* last() const { return _start + _word_size - 1; }
67 void set_start(HeapWord* start) { _start
[all...]
H A DthreadLocalAllocBuffer.hpp42 HeapWord* _start; // address of TLAB member in class:ThreadLocalAllocBuffer
62 void set_start(HeapWord* start) { _start = start; }
109 HeapWord* start() const { return _start; }
161 static ByteSize start_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _start); }
H A Dgeneration.cpp241 HeapWord* _start; member in class:GenerationBlockStartClosure
243 if (_start == NULL && s->is_in_reserved(_p)) {
244 _start = s->block_start(_p);
247 GenerationBlockStartClosure(const void* p) { _p = p; _start = NULL; }
254 return blk._start;
H A Ddump.cpp130 char* _start; member in class:MoveSymbols
136 return (char*)sym >= _start && (char*)sym < _end;
140 return sym->refcount() > 0 ? NULL : (Symbol*)(_start - sym->refcount());
149 // Encode a reference to the copy as a negative distance from _start
156 sym->_refcount = (int)(_start - (char*)new_sym);
169 _start(top), _end(end), _top(top), _count(0) { }
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcHeapSummary.hpp31 HeapWord* _start; member in class:VirtualSpaceSummary
36 _start(NULL), _committed_end(NULL), _reserved_end(NULL) { }
38 _start(start), _committed_end(committed_end), _reserved_end(reserved_end) { }
40 HeapWord* start() const { return _start; }
43 size_t committed_size() const { return (uintptr_t)_committed_end - (uintptr_t)_start; }
44 size_t reserved_size() const { return (uintptr_t)_reserved_end - (uintptr_t)_start; }
48 HeapWord* _start; member in class:SpaceSummary
53 _start(NULL), _end(NULL), _used(0) { }
55 _start(start), _end(end), _used(used) { }
57 HeapWord* start() const { return _start; }
[all...]
H A DgcTimer.hpp48 jlong _start; member in class:GCPhase
58 jlong start() { return _start; }
59 void set_start(jlong time) { _start = time; }
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp153 address _start, _end; member in class:decode_env
361 _strings.print_block_comment(st, (intptr_t)(p - _start));
432 _start = start; _end = end;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp178 BlockBegin* _start; // the start block member in class:VALUE_OBJ_CLASS_SPEC
405 BlockBegin* start() const { return _start; }
H A Dc1_IR.hpp153 BlockBegin* _start; // the start block, successsors are method entries member in class:IRScope
184 BlockBegin* start() const { return _start; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java83 private Node _start; field in class:DOMStreamReader
236 _start = _current = node;
573 Node node = _start;
797 if (_current == _start) {
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.hpp113 double _start; member in class:ParScanThreadState
228 return os::elapsedTime() - _start;
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp86 address _start; // first byte of contents (instructions) member in class:VALUE_OBJ_CLASS_SPEC
102 _start = NULL;
122 assert(_start == NULL, "only one init step, please");
123 _start = start;
137 _start = cs->_start;
145 address start() const { return _start; }
149 csize_t size() const { return (csize_t)(_end - _start); }
151 return (csize_t)(_mark - _start); }
152 csize_t capacity() const { return (csize_t)(_limit - _start); }
[all...]

Completed in 63 milliseconds