Home
last modified time | relevance | path

Searched refs:NUM_COLUMNS (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
Dbit_table.h78 static constexpr size_t NUM_COLUMNS = NumColumns;
297 static constexpr size_t NUM_COLUMNS = AccessorT::NUM_COLUMNS; variable
367 return NUM_COLUMNS; in GetColumnsCount()
377 return columns_offsets_[NUM_COLUMNS]; in GetRowSizeInBits()
420 auto columns = VarintPack::Read<NUM_COLUMNS + 1>(stream); in Decode()
421 rows_count_ = columns[NUM_COLUMNS]; in Decode()
425 for (size_t i = 0; i < NUM_COLUMNS; i++) { in Decode()
437 std::array<uint32_t, NUM_COLUMNS> width {};
439 for (size_t i = 0; i < NUM_COLUMNS; i++) {
448 for (size_t i = 0; i < NUM_COLUMNS; i++) {
[all …]
/arkcompiler/runtime_core/libpandabase/tests/
Dbit_table_test.cpp52 static_assert(N == C::NUM_COLUMNS); in CreateEntry()
167 static_assert(Base::NUM_COLUMNS == 2);