| 449 | } |
| 450 | |
| 451 | void |
| 452 | XpackDynamicTable::unref_entry(uint32_t index) |
| 453 | { |
| 454 | uint32_t pos = this->_calc_index(this->_entries_head, (index - this->_entries[this->_entries_head].index)); |
| 455 | --this->_entries[pos].ref_count; |
| 456 | } |
| 457 | |
| 458 | bool |
| 459 | XpackDynamicTable::is_empty() const |
no test coverage detected