Searched refs:_fmt_has_nbo (Results 1 - 4 of 4) sorted by relevance

/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); }
H A Dbytecode.cpp107 assert((Bytecodes::flags(bc, is_wide) & Bytecodes::_fmt_has_nbo) != 0, "native index");
H A Dbytecodes.cpp258 flags |= _fmt_has_nbo;
/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;

Completed in 103 milliseconds