Searched refs:has_size (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java429 int has_size = 0;
469 assert has_size == 0 || // no field yet
470 this_size == has_size || // same size
471 this_size < has_size && fp == format.length() : // last field can be short
473 has_size = this_size;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp227 int has_nbo = 0, has_jbo = 0, has_size = 0; local
271 guarantee(has_size == 0 || // no field yet
272 this_size == has_size || // same size
273 this_size < has_size && *fp == '\0', // last field can be short
275 has_size = this_size;

Completed in 37 milliseconds