Searched defs:_indices (Results 1 - 3 of 3) sorted by relevance

/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/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...]
/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;

Completed in 5388 milliseconds