Searched refs:OFFSET_MASK (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A Dlocation.hpp70 OFFSET_MASK = (juint) 0xFFFFFFE0, enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon197
87 ((offset_ << OFFSET_SHIFT) & OFFSET_MASK));
102 unsigned offset() const { return (unsigned) ((_value & OFFSET_MASK) >> OFFSET_SHIFT); }
H A Dlocation.cpp70 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DLocation.java62 OFFSET_MASK = db.lookupIntConstant("Location::OFFSET_MASK").intValue();
168 private static int OFFSET_MASK; field in class:Location
234 return (short) ((value & OFFSET_MASK) >> OFFSET_SHIFT);
351 value |= ((offset << OFFSET_SHIFT) & OFFSET_MASK);
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfo.java75 private static final long OFFSET_MASK = 0x0fL; field in class:ZoneInfo
286 int offset = this.offsets[(int)(val & OFFSET_MASK)] + rawOffsetDiff;
335 midVal += offsets[(int)(val & OFFSET_MASK)]; // wall time
549 // int offset = this.offsets[(int)(val & OFFSET_MASK)] + rawOffsetDiff;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp2392 declare_constant(Location::OFFSET_MASK) \

Completed in 66 milliseconds