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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparMarkBitMap.hpp38 typedef BitMap::idx_t idx_t; typedef in class:ParMarkBitMap
53 inline bool is_obj_beg(idx_t bit) const;
54 inline bool is_obj_end(idx_t bit) const;
58 inline bool is_marked(idx_t bit) const;
62 inline bool is_unmarked(idx_t bit) const;
69 inline static size_t bits_to_words(idx_t bits);
70 inline static idx_t words_to_bits(size_t words);
74 inline size_t obj_size(idx_t beg_bit, idx_t end_bi
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp41 typedef size_t idx_t; // Type used for bit and word indices. typedef in class:VALUE_OBJ_CLASS_SPEC
53 idx_t _size; // Size of bitmap (in bits)
57 void at_put_grow(idx_t index, bool value);
62 static idx_t bit_in_word(idx_t bit) { return bit & (BitsPerWord - 1); }
66 static bm_word_t bit_mask(idx_t bit) { return (bm_word_t)1 << bit_in_word(bit); }
69 static idx_t word_index(idx_t bit) { return bit >> LogBitsPerWord; }
72 static idx_t bit_index(idx_t wor
277 typedef BitMap::idx_t idx_t; // Type used for bit and word indices. typedef in class:VALUE_OBJ_CLASS_SPEC
[all...]
H A Dtaskqueue.hpp139 typedef NOT_LP64(uint16_t) LP64_ONLY(uint32_t) idx_t; typedef in class:TaskQueueSuper
150 Age(idx_t top, idx_t tag) { _fields._top = top; _fields._tag = tag; }
155 idx_t top() const volatile { return _fields._top; }
156 idx_t tag() const volatile { return _fields._tag; }
174 idx_t _top;
175 idx_t _tag;
259 typedef typename TaskQueueSuper<N, F>::idx_t idx_t; typedef in class:GenericTaskQueue
369 Age newAge((idx_t)localBo
[all...]

Completed in 33 milliseconds