Searched refs:_lengths (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp345 static u_char _lengths [number_of_codes]; member in class:Bytecodes
400 static int length_for (Code code) { /*no check*/ return _lengths [code] & 0xF; }
401 static int wide_length_for(Code code) { /*no check*/ return _lengths [code] >> 4; }
H A Dbytecodes.cpp59 u_char Bytecodes::_lengths [Bytecodes::number_of_codes]; member in class:Bytecodes
175 _lengths [code] = (wlen << 4) | (len & 0xF);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java375 public static int lengthFor (int code) { check(code); return _lengths [code] & 0xF; }
376 public static int wideLengthFor(int code) { check(code); return _lengths [code] >> 4; }
490 private static byte[] _lengths; field in class:Bytecodes
500 _lengths = new byte [number_of_codes];
834 _lengths [code] = (byte)((wlen << 4) | (len & 0xF));

Completed in 34 milliseconds