Searched refs:BitVectorArray (Results 1 – 2 of 2) sorted by relevance
/art/libartbase/base/ |
D | bit_vector.h | 382 class BitVectorArray final : public BaseBitVectorArray { 384 BitVectorArray(const BitVectorArray& bv) = delete; 385 BitVectorArray& operator=(const BitVectorArray& other) = delete; 387 explicit BitVectorArray(BitVector&& bv) : BaseBitVectorArray(), data_(std::move(bv)) {} in BitVectorArray() function 388 explicit BitVectorArray(BitVector&& bv, size_t cols) in BitVectorArray() function 390 explicit BitVectorArray(BitVector&& bv, size_t rows, size_t cols) in BitVectorArray() function 393 BitVectorArray(uint32_t start_rows, uint32_t start_cols, bool expandable, Allocator* allocator) in BitVectorArray() function 399 BitVectorArray(const BaseBitVectorArray& src, bool expandable, Allocator* allocator) in BitVectorArray() function 403 ~BitVectorArray() override {} in ~BitVectorArray()
|
D | bit_vector_test.cc | 370 BitVectorArray bva(100, 200, true, Allocator::GetMallocAllocator()); in TEST() 377 BitVectorArray bva(100, 200, true, Allocator::GetMallocAllocator()); in TEST() 387 BitVectorArray bva(100, 200, true, Allocator::GetMallocAllocator()); in TEST() 406 BitVectorArray bva(100, 100, true, Allocator::GetMallocAllocator()); in TEST()
|