| 344 | } |
| 345 | |
| 346 | std::pair<BufferSpan, BufferSpan> OffsetsAndSizesForScalar(uint8_t* scratch_space, |
| 347 | int64_t offset_width) { |
| 348 | auto* offsets = scratch_space; |
| 349 | auto* sizes = scratch_space + offset_width; |
| 350 | return {BufferSpan{offsets, offset_width}, BufferSpan{sizes, offset_width}}; |
| 351 | } |
| 352 | |
| 353 | int GetNumBuffers(const DataType& type) { |
| 354 | switch (type.id()) { |