Searched refs:_offset (Results 1 - 25 of 44) sorted by relevance

12

/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/ci/
H A DciField.cpp121 // We need values for _holder, _offset, and _is_constant,
123 _offset = -1;
137 _offset = -1;
188 _offset = fd->offset();
220 if( _offset == java_lang_System::in_offset_in_bytes() ||
221 _offset == java_lang_System::out_offset_in_bytes() ||
222 _offset == java_lang_System::err_offset_in_bytes() ) {
233 _constant_value = ciConstant(type()->basic_type(), mirror->byte_field(_offset));
236 _constant_value = ciConstant(type()->basic_type(), mirror->char_field(_offset));
239 _constant_value = ciConstant(type()->basic_type(), mirror->short_field(_offset));
[all...]
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.cpp58 _bufoff = _offset = 0L; // Offset at file start
96 : _bfr(bufr), _sol(soln), _line(ln), _offset(off), _length(len) {
110 FileBuffRegion *br = new FileBuffRegion(_bfr,_sol,_line,_offset,_length);
126 if( _offset < br->_offset ) { // "this" starts before "br"
127 if( _offset+_length < br->_offset ) { // "this" ends before "br"
131 int l = br->_offset + br->_length - _offset;
139 if( br->_offset
[all...]
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/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/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),
H A DstackMapFrame.cpp35 _offset(0), _locals_size(0), _stack_size(0),
53 StackMapFrame* frame = new StackMapFrame(_offset, flags, _locals_size, 0, _max_locals, _max_stack, _locals, stack, _verifier);
216 _offset, (StackMapFrame*)this, (StackMapFrame*)target);
221 _offset, (StackMapFrame*)this, (StackMapFrame*)target);
257 ErrorContext::stack_underflow(_offset, this),
266 ErrorContext::bad_type(_offset, stack_top_ctx(),
278 ErrorContext::bad_local_index(_offset, index),
286 ErrorContext::bad_type(_offset,
302 ErrorContext::bad_local_index(_offset, index),
309 ErrorContext::bad_type(_offset,
[all...]
/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;
/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/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DValidationEventLocatorImpl.java188 * @param _offset the offset
190 public void setOffset( int _offset ) {
191 this.offset = _offset;
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp2097 return make(_base, ptr, _offset);
2103 return _offset;
2148 if( _offset == OffsetTop ) return offset;
2149 if( offset == OffsetTop ) return _offset;
2151 if( _offset != offset ) return OffsetBot;
2152 return _offset;
2157 if( _offset == OffsetTop ) return OffsetBot;// Map 'TOP' into 'BOTTOM'
2158 if( _offset == OffsetBot ) return OffsetTop;// Map 'BOTTOM' into 'TOP'
2159 return _offset; // Map everything else into self
2174 if( _offset
[all...]
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 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 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; }
H A Dlive.cpp316 assert(check->bottom_type()->is_ptr()->_offset == 0,"Bad base pointer");
325 } else if( check->bottom_type()->is_ptr()->_offset == 0 ) {
/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/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/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/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/cpu/sparc/vm/
H A Dc1_CodeStubs_sparc.cpp86 if (_offset != -1) {
87 ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
101 ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp122 if (_offset != -1) {
123 ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
397 ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSAXDocumentParser.java713 _characterContentChunkTable._offset[index],
726 _characterContentChunkTable._offset[index],
742 _characterContentChunkTable._offset[index],
758 _characterContentChunkTable._offset[index],
1028 _characterContentChunkTable._offset[index],
1041 _characterContentChunkTable._offset[index],
1057 _characterContentChunkTable._offset[index],
1073 _characterContentChunkTable._offset[index],

Completed in 134 milliseconds

12