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

/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp284 idx_t bit_index(idx_t slot_index, idx_t bit_within_slot_index) const { argument
285 return slot_index * _bits_per_slot + bit_within_slot_index;
309 bool is_valid_index(idx_t slot_index, idx_t bit_within_slot_index) {
311 return (bit_index(slot_index, bit_within_slot_index) < size_in_bits());
314 bool at(idx_t slot_index, idx_t bit_within_slot_index) const {
316 return _map.at(bit_index(slot_index, bit_within_slot_index));
319 void set_bit(idx_t slot_index, idx_t bit_within_slot_index) {
321 _map.set_bit(bit_index(slot_index, bit_within_slot_index));
324 void clear_bit(idx_t slot_index, idx_t bit_within_slot_index) {
326 _map.clear_bit(bit_index(slot_index, bit_within_slot_inde
[all...]

Completed in 30 milliseconds