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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java428 boolean has_nbo = false, has_jbo = false;
436 case 'j': this_flag = _fmt_has_j; has_jbo = true; break;
437 case 'k': this_flag = _fmt_has_k; has_jbo = true; break;
438 case 'i': this_flag = _fmt_has_i; has_jbo = true; break;
439 case 'c': this_flag = _fmt_has_c; has_jbo = true; break;
440 case 'o': this_flag = _fmt_has_o; has_jbo = true; break;
454 assert !(has_jbo && has_nbo) : "mixed byte orders in format";
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp227 int has_nbo = 0, has_jbo = 0, has_size = 0; local
238 case 'j': this_flag = _fmt_has_j; has_jbo = 1; break;
239 case 'k': this_flag = _fmt_has_k; has_jbo = 1; break;
240 case 'i': this_flag = _fmt_has_i; has_jbo = 1; break;
241 case 'c': this_flag = _fmt_has_c; has_jbo = 1; break;
242 case 'o': this_flag = _fmt_has_o; has_jbo = 1; break;
256 guarantee(!(has_jbo && has_nbo), "mixed byte orders in format");

Completed in 28 milliseconds