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

/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp42 typedef uintptr_t bm_word_t; // Element type of array that represents typedef in class:VALUE_OBJ_CLASS_SPEC
51 ArrayAllocator<bm_word_t, mtInternal> _map_allocator;
52 bm_word_t* _map; // First word in bitmap
66 static bm_word_t bit_mask(idx_t bit) { return (bm_word_t)1 << bit_in_word(bit); }
75 bm_word_t* map() const { return _map; }
76 bm_word_t map(idx_t word) const { return _map[word]; }
79 bm_word_t* word_addr(idx_t bit) const { return map() + word_index(bit); }
82 void set_word (idx_t word, bm_word_t val) { _map[word] = val; }
89 bm_word_t inverted_bit_mask_for_rang
278 typedef BitMap::bm_word_t bm_word_t; // Element type of array that typedef in class:VALUE_OBJ_CLASS_SPEC
[all...]

Completed in 1445 milliseconds