Searched refs:_base (Results 1 - 25 of 39) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJAnonymousClass.java41 JAnonymousClass( JClass _base) { argument
42 super(_base.owner(), 0, null);
43 this.base = _base;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DPrefixFactoryImpl.java39 _base = base;
53 prefix = _base + Integer.toString(_next++);
60 private String _base; field in class:PrefixFactoryImpl
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dstack_zero.hpp33 intptr_t *_base; // the last available word member in class:ZeroStack
42 : _base(NULL), _top(NULL), _sp(NULL) {
47 return _base == NULL;
56 _base = (intptr_t *) mem;
57 _top = _base + (size >> LogBytesPerWord);
64 _base = NULL;
73 assert(_top >= new_sp && new_sp >= _base, "bad stack pointer");
78 return _top - _base;
81 return _sp - _base;
85 assert(_sp > _base, "stac
[all...]
H A Dstack_zero.cpp87 memset(_base, c, available_words() * wordSize);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DResourceEntityResolver.java32 public ResourceEntityResolver( Class _base ) {
33 this.base = _base;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DContainsCall.java45 private Expression _base = null; field in class:ContainsCall
73 _base = argument(0);
74 Type baseType = _base.typeCheck(stable);
76 _base = new CastExpr(_base, Type.String);
102 _base.translate(classGen, methodGen);
H A DStartsWithCall.java44 private Expression _base = null; field in class:StartsWithCall
67 _base = argument(0);
68 Type baseType = _base.typeCheck(stable);
70 _base = new CastExpr(_base, Type.String);
87 _base.translate(classGen, methodGen);
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.hpp131 // the _base types and thus knows it can cast 't' appropriately.
148 const TYPES _base; // Enum of Types type member in class:Type
150 Type( TYPES t ) : _dual(NULL), _base(t) {} // Simple types
175 assert(_base > Bad && _base < lastype, "sanity");
176 return _base;
341 BasicType basic_type() const { return _basic_type[_base]; }
655 // If the _base enum is AnyPtr, then this refers to all of the above.
656 // Otherwise the _base will indicate which subset of pointers is affected,
1137 assert( _base
[all...]
H A Dtype.cpp194 if( t1->_base != t2->_base )
516 return _base;
600 if( _base == Top ) return t;
603 if( _base == Bottom ) return BOTTOM;
605 // Current "this->_base" is one of: Bad, Multi, Control, Top,
641 if( _base == FloatTop ) return this;
643 if( _base == FloatBot || _base == FloatTop ) return FLOAT;
644 if( _base
[all...]
H A Dsuperword.hpp433 Node* _base; // NULL if unsafe nonheap reference member in class:VALUE_OBJ_CLASS_SPEC
473 Node* base() { return _base; }
485 (_adr == q._adr || _base == _adr && q._base == q._adr) &&
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DUtil.java82 private static boolean isSubstitutable( XSType _base, XSType derived ) { argument
86 if( _base.isComplexType() ) {
87 XSComplexType base = _base.asComplexType();
H A DComplexTypeImpl.java60 Ref.Type _base, int _final, int _block, boolean _mixed ) {
64 if(_base==null)
69 this.baseType = _base;
55 ComplexTypeImpl( SchemaDocumentImpl _parent, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, String _name, boolean _anonymous, boolean _abstract, int _derivationMethod, Ref.Type _base, int _final, int _block, boolean _mixed ) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.cpp224 _base = NULL;
273 assert(_base == NULL, "should be");
278 _base = addr;
304 _base = NULL;
384 assert(_base == NULL, "should be");
390 _base = base;
399 assert(markOopDesc::encode_pointer_as_mark(_base)->decode_pointer() == _base,
401 assert(markOopDesc::encode_pointer_as_mark(&_base[size])->decode_pointer() == &_base[siz
[all...]
H A Dvirtualspace.hpp35 char* _base; member in class:VALUE_OBJ_CLASS_SPEC
104 char* base() const { return _base; }
110 bool is_reserved() const { return _base != NULL; }
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp233 si->_base = base;
306 if (si->_base != (char*)space->bottom() ||
314 space->set_top((HeapWord*)(si->_base + si->_used));
335 si->_base, size, false /* !read_only */,
342 if (base != si->_base) {
380 requested_addr = si->_base;
390 if (base != si->_base) {
395 si->_base = base; // save mapped address for unmapping.
407 if (!os::unmap_memory(si->_base, size)) {
529 if (p >= _header._space[i]._base
[all...]
H A Dfilemap.hpp69 char* _base; // copy-on-write base address member in struct:FileMapInfo::FileMapHeader::space_info
111 char* region_base(int i) { return _header._space[i]._base; }
H A Duniverse.hpp103 address _base; member in struct:NarrowOopStruct
359 static address* narrow_oop_base_addr() { return &_narrow_oop._base; }
360 static address narrow_oop_base() { return _narrow_oop._base; }
363 static void set_narrow_oop_base(address base) { _narrow_oop._base = base; }
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.hpp162 oop* _base; // bottom of stack member in class:VALUE_OBJ_CLASS_SPEC
180 return _base[--_index] ;
193 _base[_index++] = ptr;
H A DconcurrentMark.cpp162 _base(NULL), _cm(cm)
170 _base = NEW_C_HEAP_ARRAY(oop, size, mtGC);
171 if (_base == NULL) {
181 if (_base != NULL) {
182 FREE_C_HEAP_ARRAY(oop, _base, mtGC);
197 _base[index] = ptr;
225 _base[ind] = ptr_arr[i];
248 _base[ind] = ptr_arr[i];
263 ptr_arr[j] = _base[new_ind + j];
316 f->do_oop(&_base[
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp180 Register _base; member in class:VALUE_OBJ_CLASS_SPEC
197 : _base(noreg),
207 : _base(base),
214 : _base (base),
223 : _base (base),
249 return _base == a._base && _disp == a._disp && _index == a._index && _scale == a._scale;
265 : _base(base),
272 : _base(base),
281 : _base (bas
432 AddressLiteral _base; member in class:VALUE_OBJ_CLASS_SPEC
[all...]
/openjdk7/hotspot/src/os/bsd/dtrace/
H A DgenerateJvmOffsets.cpp270 GEN_OFFS(NarrowOopStruct, _base);
/openjdk7/hotspot/src/os/solaris/dtrace/
H A DgenerateJvmOffsets.cpp265 GEN_OFFS(NarrowOopStruct, _base);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp175 oop* _base; // bottom of stack member in class:CMSMarkStack
197 return _base[--_index] ;
206 _base[_index++] = ptr;
245 least = MIN2(least, _base[i]);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp2131 Value _base; // Base address (a Java long)
2140 , _base(addr)
2150 , _base(base)
2158 Value base() { return _base; }
2164 void set_base (Value base) { _base = base; }
2170 f->visit(&_base);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp527 char* _base; // copy-on-write base address member in struct:FileMapHeader::space_info
696 pheader->_space[m]._file_offset, pheader->_space[m]._base,
1103 jlong baseAddress = (jlong) (uintptr_t) pheader->_space[m]._base;

Completed in 5961 milliseconds

12