Searched refs:_indices (Results 1 - 8 of 8) sorted by relevance

/openjdk9/hotspot/src/share/vm/oops/
H A DcpCache.hpp47 // _indices [ b2 | b1 | index ] index = constant_pool_index
95 // _indices = get (b1 section) and put (b2 section) bytecodes, original constant pool index
102 // _indices = invoke code for f1 (b1 section), invoke code for f2 (b2 section),
125 // source code. The _indices field with the bytecode must be written last.
136 volatile intx _indices; // constant pool index & rewrite bytecodes member in class:VALUE_OBJ_CLASS_SPEC
332 int indices() const { return _indices; }
333 int indices_ord() const { return (intx)OrderAccess::load_ptr_acquire(&_indices); }
368 static ByteSize indices_offset() { return byte_offset_of(ConstantPoolCacheEntry, _indices); }
H A DcpCache.cpp44 _indices = index;
72 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << bytecode_1_shift));
82 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << bytecode_2_shift));
/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DGlyphLayout.java545 public int[] _indices; field in class:GlyphLayout.GVData
559 _indices = new int[size];
578 System.arraycopy(_indices, 0, nindices, 0, _count);
579 _indices = nindices;
598 int cx = _indices[i];
626 System.arraycopy(_indices, 0, indices, 0, _count);
/openjdk9/hotspot/src/share/vm/classfile/
H A DbytecodeAssembler.cpp35 u2* probe = _indices.get(bcpe);
39 _indices.put(bcpe, index);
H A DbytecodeAssembler.hpp132 IndexHash _indices; member in class:BytecodeConstantPool
/openjdk9/hotspot/src/share/vm/opto/
H A Dblock.cpp1261 UnionFind::UnionFind( uint max ) : _cnt(max), _max(max), _indices(NEW_RESOURCE_ARRAY(uint,max)) {
1262 Copy::zero_to_bytes( _indices, sizeof(uint)*max );
1270 _indices = REALLOC_RESOURCE_ARRAY( uint, _indices, _max, size );
1273 while( _cnt <= from_idx ) _indices[_cnt++] = 0;
1274 _indices[from_idx] = to_idx;
H A Dblock.hpp632 uint* _indices; member in class:UnionFind
639 return _indices[nidx];
645 _indices[from_idx] = to_idx;
/openjdk9/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp362 volatile_nonstatic_field(ConstantPoolCacheEntry, _indices, intx) \

Completed in 187 milliseconds