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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBitMap.java30 public class BitMap { class
31 public BitMap(int sizeInBits) { method in class:BitMap
44 Assert.that(offset>=0 && offset < size(), "BitMap index out of bounds");
96 public boolean setUnion(BitMap other) {
111 public void setIntersection(BitMap other) {
122 public void setFrom(BitMap other) {
135 public boolean setDifference(BitMap other) {
149 public boolean isSame(BitMap other) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp37 class BitMap VALUE_OBJ_CLASS_SPEC {
117 BitMap() : _map(NULL), _size(0), _map_allocator(false) {} function in class:VALUE_OBJ_CLASS_SPEC
120 BitMap(bm_word_t* map, idx_t size_in_bits);
125 BitMap(idx_t size_in_bits, bool in_resource_area = true);
136 // (Note that this assumes that all calls to "resize" on the same BitMap
235 void set_union(BitMap bits);
236 void set_difference(BitMap bits);
237 void set_intersection(BitMap bits);
239 bool contains(const BitMap bits) const;
241 bool intersects(const BitMap bit
[all...]
H A DbitMap.cpp43 BitMap::BitMap(bm_word_t* map, idx_t size_in_bits) : function in class:BitMap
51 BitMap::BitMap(idx_t size_in_bits, bool in_resource_area) : function in class:BitMap
58 void BitMap::resize(idx_t size_in_bits, bool in_resource_area) {
80 void BitMap::set_range_within_word(idx_t beg, idx_t end) {
89 void BitMap::clear_range_within_word(idx_t beg, idx_t end) {
98 void BitMap::par_put_range_within_word(idx_t beg, idx_t end, bool value) {
116 void BitMap::set_range(idx_t beg, idx_t end) {
135 void BitMap
[all...]

Completed in 82 milliseconds