This function returns the size in bytes of the dictionary vector. It is used by dict-test.cc for validation of bytes consumed against memory tracked.
| 184 | /// It is used by dict-test.cc for validation of bytes consumed against |
| 185 | /// memory tracked. |
| 186 | int DictByteSize() { |
| 187 | return sizeof(Node) * nodes_.size(); |
| 188 | } |
| 189 | |
| 190 | void WriteDict(uint8_t* buffer) override; |
| 191 |