| 337 | Vector Values() const { return Vector(data_, byte_width_); } |
| 338 | |
| 339 | TypedVector Keys() const { |
| 340 | const size_t num_prefixed_fields = 3; |
| 341 | auto keys_offset = data_ - byte_width_ * num_prefixed_fields; |
| 342 | return TypedVector(Indirect(keys_offset, byte_width_), |
| 343 | static_cast<uint8_t>( |
| 344 | ReadUInt64(keys_offset + byte_width_, byte_width_)), |
| 345 | FBT_KEY); |
| 346 | } |
| 347 | |
| 348 | static Map EmptyMap() { |
| 349 | static const uint8_t empty_map[] = { |
no test coverage detected