Searched defs:_fmt_has_nbo (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java290 static final int _fmt_has_nbo = 1<<7; // contains native-order field(s) field in class:Bytecodes
302 static final int _fmt_bJJ = _fmt_b | _fmt_has_j | _fmt_has_u2 | _fmt_has_nbo;
380 public static boolean native_byte_order(int code) { check(code); return has_all_flags(code, _fmt_has_nbo, false); }
456 flags |= _fmt_has_nbo;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp323 _fmt_has_nbo = 1<<7, // contains native-order field(s) enumerator in enum:Bytecodes::Flags
335 _fmt_bJJ = _fmt_b | _fmt_has_j | _fmt_has_u2 | _fmt_has_nbo,
406 static bool native_byte_order(Code code) { check(code); return has_all_flags(code, _fmt_has_nbo, false); }

Completed in 38 milliseconds