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

/openjdk7/hotspot/src/share/vm/ci/
H A DciField.hpp50 int _offset; member in class:ciField
115 assert(_offset >= 1, "illegal call to offset()");
116 return _offset;
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.hpp52 long _offset; // Expected filepointer offset. member in class:FileBuff
95 int _offset, _length; // The file area member in class:FileBuffRegion
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DContiguousCharArrayArray.java37 public int[] _offset; field in class:ContiguousCharArrayArray
52 _offset = new int[initialCapacity];
98 _offset = getCompleteOffsetArray();
118 return _offset;
121 final int[] a = new int[_readOnlyArraySize + _offset.length];
141 return (s != null) ? s : (_cachedStrings[i] = new String(_array, _offset[i], _length[i]));
144 final String[] newCachedStrings = new String[_offset.length];
150 return _cachedStrings[i] = new String(_array, _offset[i], _length[i]);
160 if (_size == _offset.length) {
165 _offset[_siz
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.hpp45 int32_t _offset; member in class:StackMapFrame
66 _offset(cp._offset), _locals_size(cp._locals_size),
108 ClassVerifier* v) : _offset(offset), _flags(flags),
121 inline void set_offset(int32_t offset) { _offset = offset; }
127 inline int32_t offset() const { return _offset; }
202 ErrorContext::stack_overflow(_offset, this),
215 ErrorContext::stack_overflow(_offset, this),
227 ErrorContext::stack_underflow(_offset, this),
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp204 int _offset; member in class:VALUE_OBJ_CLASS_SPEC
207 int offset() const { return _offset; }
210 itableMethodEntry* first_method_entry(klassOop k) { return method_entry(k, _offset); }
212 void initialize(klassOop interf, int offset) { _interface = interf; _offset = offset; }
217 static int offset_offset_in_bytes() { return offset_of(itableOffsetEntry, _offset); }
H A DinstanceKlass.hpp121 int offset() const { return _offset; }
122 void set_offset(int offset) { _offset = offset; }
135 int _offset; member in class:VALUE_OBJ_CLASS_SPEC
1026 int _offset; member in class:JNIid
1034 int offset() const { return _offset; }
/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphLayout.java100 private int _offset; field in class:GlyphLayout
379 _offset = offset;
681 engine.layout(_sd, _mat, gmask, start - _offset, _textRecord,
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp37 int _offset; // location in the stream of this scope member in class:DIR_Chunk
52 _offset = offset;
55 address p = dir->stream()->buffer() + _offset;
74 0 == memcmp(buf + this->_offset, buf + that->_offset, length)) {
256 return ms->_offset;
271 return ms->_offset;
H A DrelocInfo.hpp945 jint _offset; // byte offset to apply to the oop itself member in class:oop_Relocation
948 _oop_index = oop_index; _offset = offset;
956 int offset() { return _offset; }
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp605 intptr_t _offset; // Offset from base pointer member in class:DerivedPointerEntry
607 DerivedPointerEntry(oop* location, intptr_t offset) { _location = location; _offset = offset; }
609 intptr_t offset() { return _offset; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CodeStubs.hpp172 int _offset; member in class:DivByZeroStub
176 : _info(info), _offset(-1) {
179 : _info(info), _offset(offset) {
197 int _offset; member in class:ImplicitNullCheckStub
201 : _offset(offset), _info(info) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsignature.hpp272 int _offset; // The java stack offset member in class:NativeSignatureIterator
276 void do_bool () { pass_int(); _jni_offset++; _offset++; }
277 void do_char () { pass_int(); _jni_offset++; _offset++; }
278 void do_float () { pass_float(); _jni_offset++; _offset++; }
280 void do_double() { pass_double(); _jni_offset++; _offset += 2; }
282 void do_double() { pass_double(); _jni_offset += 2; _offset += 2; }
284 void do_byte () { pass_int(); _jni_offset++; _offset++; }
285 void do_short () { pass_int(); _jni_offset++; _offset++; }
286 void do_int () { pass_int(); _jni_offset++; _offset++; }
288 void do_long () { pass_long(); _jni_offset++; _offset
[all...]
H A Dframe.cpp790 int _offset; // TOS-relative offset, decremented with each argument member in class:InterpretedArgumentOopFinder
795 _offset -= size;
801 addr = (oop*)_fr->interpreter_frame_tos_at(_offset);
815 _offset = args_size;
820 --_offset;
843 int _offset; member in class:EntryFrameOopFinder
848 assert (_offset >= 0, "illegal offset");
849 if (type == T_OBJECT || type == T_ARRAY) oop_at_offset_do(_offset);
850 _offset -= size;
864 _offset
1007 int _offset; // the current offset, incremented with each argument member in class:CompiledArgumentOopFinder
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.hpp378 blk_ofs_t offset() const { return _offset; }
379 void set_offset(size_t val) { _offset = (blk_ofs_t)val; }
382 blk_ofs_t _offset; member in class:ParallelCompactData::BlockData
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.hpp261 const int _offset; // Field's offset. member in class:FieldNode
267 _offset(offs), _is_oop(is_oop),
270 int offset() const { return _offset;}
H A Dsuperword.hpp436 jint _offset; // constant offset (in bytes) member in class:VALUE_OBJ_CLASS_SPEC
479 int offset_in_bytes() { return _offset; }
489 bool overlap = q._offset < _offset + memory_size() &&
490 _offset < q._offset + q.memory_size();
491 return overlap ? Equal : (_offset < q._offset ? Less : Greater);
H A Dcompile.hpp160 int _offset; // offset of this constant (in bytes) relative to the constant table base. member in class:Compile::Constant
165 Constant() : _type(T_ILLEGAL), _offset(-1), _freq(0.0f), _can_be_reused(true) { _value.l = 0; }
169 _offset(-1),
183 int offset() const { return _offset; }
184 void set_offset(int offset) { _offset = offset; }
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp922 intptr_t _offset; member in class:CodeString
929 bool is_comment() const { return _offset >= 0; }
933 : _next(NULL), _offset(offset) {
938 intptr_t offset() const { assert(_offset >= 0, "offset for non comment?"); return _offset; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamReaderBufferProcessor.java620 private final int _offset; field in class:StreamReaderBufferProcessor.CharSequenceImpl
624 _offset = offset;
646 return new CharSequenceImpl(_offset + start, length);
650 return new String(_characters, _offset, _length);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp755 static jlong _offset = 116444736000000000; variable
781 assert(_calculated_offset == _offset, "Calculated and constant time offsets must be equal");
786 return _offset;

Completed in 116 milliseconds