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

/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp127 uint word_index = IndexSet::get_word_index(element); local
130 return ((words()[word_index] & (uint32)(0x1 << bit_index)) != 0);
134 uint word_index = IndexSet::get_word_index(element); local
138 uint32 before = words()[word_index];
139 words()[word_index] = before | bit;
144 uint word_index = IndexSet::get_word_index(element); local
148 uint32 before = words()[word_index];
149 words()[word_index] = before & ~bit;
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.inline.hpp169 idx_t index = word_index(l_offset);
170 idx_t r_index = word_index(r_offset-1) + 1;
232 idx_t index = word_index(l_offset);
233 idx_t r_index = word_index(r_offset-1) + 1;
275 idx_t index = word_index(l_offset);
276 idx_t r_index = word_index(r_offset);
314 assert(beg == end || word_index(beg) == word_index(end - 1),
334 return bit_rounded_up > bit ? word_index(bit_rounded_up) : size_in_words();
H A DbitMap.cpp120 idx_t end_full_word = word_index(end);
139 idx_t end_full_word = word_index(end);
158 idx_t end_full_word = word_index(end);
173 idx_t end_full_word = word_index(end);
230 idx_t end_full_word = word_index(end);
262 idx_t end_full_word = word_index(end);
344 idx_t offset_word_ind = word_index(offset);
451 idx_t startIndex = word_index(leftOffset);
452 idx_t endIndex = MIN2(word_index(rightOffset) + 1, size_in_words());
H A DbitMap.hpp69 static idx_t word_index(idx_t bit) { return bit >> LogBitsPerWord; } function in class:VALUE_OBJ_CLASS_SPEC
79 bm_word_t* word_addr(idx_t bit) const { return map() + word_index(bit); }
143 return word_index(size() + BitsPerWord - 1);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.cpp214 int word_index = 0; local
221 value = bit_mask()[word_index++];
241 int word_index = 0; local
248 value = bit_mask()[word_index++];
405 int word_index = 0; local
413 bit_mask()[word_index++] = value;
438 bit_mask()[word_index] = value;

Completed in 36 milliseconds