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

/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp41 // _indices [ b2 | b1 | index ] index = constant_pool_index (!= 0, normal entries only)
42 // _indices [ index | 00000 ] index = main_entry_index (secondary entries only)
88 // _indices = get (b1 section) and put (b2 section) bytecodes, original constant pool index
95 // _indices = invoke code for f1 (b1 section), invoke code for f2 (b2 section),
117 // source code. The _indices field with the bytecode must be written last.
125 volatile intx _indices; // constant pool index & rewrite bytecodes member in class:VALUE_OBJ_CLASS_SPEC
297 bool is_secondary_entry() const { return (_indices & main_cp_index_mask) == 0; }
299 return ((uintx)_indices >> secondary_cp_index_shift); }
301 return _indices; }
339 static ByteSize indices_offset() { return byte_offset_of(ConstantPoolCacheEntry, _indices); }
[all...]
H A DcpCacheOop.cpp42 _indices = index;
48 _indices = (main_index << main_cp_index_bits);
75 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << bytecode_1_shift));
86 OrderAccess::release_store_ptr(&_indices, _indices | ((u_char)code << bytecode_2_shift));
/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphLayout.java539 public int[] _indices; field in class:GlyphLayout.GVData
553 _indices = new int[size];
572 System.arraycopy(_indices, 0, nindices, 0, _count);
573 _indices = nindices;
592 int cx = _indices[i];
620 System.arraycopy(_indices, 0, indices, 0, _count);
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp479 uint* _indices; member in class:UnionFind
486 return _indices[nidx];
492 _indices[from_idx] = to_idx;
H A Dblock.cpp958 UnionFind::UnionFind( uint max ) : _cnt(max), _max(max), _indices(NEW_RESOURCE_ARRAY(uint,max)) {
959 Copy::zero_to_bytes( _indices, sizeof(uint)*max );
967 _indices = REALLOC_RESOURCE_ARRAY( uint, _indices, _max, size );
970 while( _cnt <= from_idx ) _indices[_cnt++] = 0;
971 _indices[from_idx] = to_idx;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp412 volatile_nonstatic_field(ConstantPoolCacheEntry, _indices, intx) \

Completed in 77 milliseconds