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

/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp72 static idx_t bit_index(idx_t word) { return word << LogBitsPerWord; } function in class:VALUE_OBJ_CLASS_SPEC
284 idx_t bit_index(idx_t slot_index, idx_t bit_within_slot_index) const { function in class:VALUE_OBJ_CLASS_SPEC
311 return (bit_index(slot_index, bit_within_slot_index) < size_in_bits());
316 return _map.at(bit_index(slot_index, bit_within_slot_index));
321 _map.set_bit(bit_index(slot_index, bit_within_slot_index));
326 _map.clear_bit(bit_index(slot_index, bit_within_slot_index));
331 _map.at_put(bit_index(slot_index, bit_within_slot_index), value);
336 _map.at_put_grow(bit_index(slot_index, bit_within_slot_index), value);
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp128 uint bit_index = IndexSet::get_bit_index(element); local
130 return ((words()[word_index] & (uint32)(0x1 << bit_index)) != 0);
135 uint bit_index = IndexSet::get_bit_index(element); local
137 uint32 bit = (0x1 << bit_index);
145 uint bit_index = IndexSet::get_bit_index(element); local
147 uint32 bit = (0x1 << bit_index);

Completed in 33 milliseconds