| 300 | int64_t tuple_stride, uint8_t* tuple_mem); |
| 301 | |
| 302 | void* GetSlot(int offset) { |
| 303 | DCHECK(offset != -1); // -1 offset indicates non-materialized slot |
| 304 | return reinterpret_cast<char*>(this) + offset; |
| 305 | } |
| 306 | |
| 307 | const void* GetSlot(int offset) const { |
| 308 | DCHECK(offset != -1); // -1 offset indicates non-materialized slot |
no outgoing calls