Lines Matching refs:packed_index
650 unsigned int packed_index = this->block_mode_packed_index[block_mode];
651 assert(packed_index != BLOCK_BAD_BLOCK_MODE && packed_index < this->block_mode_count_all);
652 return this->block_modes[packed_index];
714 unsigned int packed_index = 0;
717 packed_index = this->partitioning_packed_index[partition_count - 2][index];
720 assert(packed_index != BLOCK_BAD_PARTITIONING && packed_index < this->partitioning_count_all[partition_count - 1]);
721 auto& result = get_partition_table(partition_count)[packed_index];
730 * @param packed_index The raw array offset.
734 const partition_info& get_raw_partition_info(unsigned int partition_count, unsigned int packed_index) const
736 assert(packed_index != BLOCK_BAD_PARTITIONING && packed_index < this->partitioning_count_all[partition_count - 1]);
737 auto& result = get_partition_table(partition_count)[packed_index];