Searched refs:GetRowSizeInBits (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | bit_table.h | 375 size_t GetRowSizeInBits() const in GetRowSizeInBits() function in panda::BitTable 388 return region_.Read(row_index * GetRowSizeInBits() + columns_offsets_[column], GetColumnWidth(column)) + in ReadColumn() 414 size_t offset = row * GetRowSizeInBits() + columns_offsets_[0]; 429 region_ = stream->ReadRegion(GetRowsCount() * GetRowSizeInBits()); 435 << ", row_size=" << GetRowSizeInBits() << std::endl;
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_table.h | 396 size_t GetRowSizeInBits() const in GetRowSizeInBits() function in ark::BitTable 409 return region_.Read(rowIndex * GetRowSizeInBits() + columnsOffsets_[column], GetColumnWidth(column)) + in ReadColumn() 435 size_t offset = row * GetRowSizeInBits() + columnsOffsets_[0]; 450 region_ = stream->ReadRegion(GetRowsCount() * GetRowSizeInBits()); 456 << ", row_size=" << GetRowSizeInBits() << std::endl;
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | bit_table_test.cpp | 421 ASSERT_EQ(table.GetRowSizeInBits(), MinimumBitsToStore(pattern)); in TEST_F() 425 ASSERT_EQ(table.GetBitMemoryRegion(index).Read<uint64_t>(0, table.GetRowSizeInBits()), value); in TEST_F() 483 ASSERT_EQ(table.GetRowSizeInBits(), 234); in TEST_F()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | bit_table_test.cpp | 433 ASSERT_EQ(table.GetRowSizeInBits(), MinimumBitsToStore(pattern)); in TEST_F() 437 ASSERT_EQ(table.GetBitMemoryRegion(index).Read<uint64_t>(0U, table.GetRowSizeInBits()), value); in TEST_F() 495 ASSERT_EQ(table.GetRowSizeInBits(), 234U); in TEST_F()
|
Completed in 5 milliseconds