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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java458 int this_size = 1;
461 this_size = 2;
462 while (fp + 1 < format.length() && format.charAt(++fp) == fc) this_size++;
463 switch (this_size) {
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.cpp260 int this_size = 1; local
263 this_size = 2;
264 while (*++fp == fc) this_size++;
265 switch (this_size) {
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 36 milliseconds