| 64 | uint32_t hash() const { return hash_; } |
| 65 | |
| 66 | uint8_t* mutable_val_ptr() { |
| 67 | int val_offset = KUDU_ALIGN_UP(key_length_, sizeof(void*)); |
| 68 | return &kv_data_ptr_[val_offset]; |
| 69 | } |
| 70 | |
| 71 | const uint8_t* val_ptr() const { |
| 72 | return const_cast<HandleBase*>(this)->mutable_val_ptr(); |
no outgoing calls
no test coverage detected