| 63 | } |
| 64 | |
| 65 | void BooleanKeyEncoder::AddLength(const ExecValue&, int64_t batch_length, |
| 66 | int32_t* lengths) { |
| 67 | for (int64_t i = 0; i < batch_length; ++i) { |
| 68 | lengths[i] += kByteWidth + kExtraByteForNull; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | void BooleanKeyEncoder::AddLengthNull(int32_t* length) { |
| 73 | *length += kByteWidth + kExtraByteForNull; |
no outgoing calls