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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBits.java32 public static final int OneBit = 1; field in class:Bits
50 return (n > 32) ? 0 : (OneBit << n);
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp922 const intptr_t OneBit = 1; // only right_most bit set in a word variable
926 #define nth_bit(n) (n >= BitsPerWord ? 0 : OneBit << (n))

Completed in 2037 milliseconds