| 67 | } // namespace |
| 68 | |
| 69 | uint64_t GreaterThanBitmap(const int16_t* levels, int64_t num_levels, int16_t rhs) { |
| 70 | static DynamicDispatch<GreaterThanDynamicFunction> dispatch; |
| 71 | return dispatch.func(levels, num_levels, rhs); |
| 72 | } |
| 73 | |
| 74 | MinMax FindMinMax(const int16_t* levels, int64_t num_levels) { |
| 75 | static DynamicDispatch<MinMaxDynamicFunction> dispatch; |
no outgoing calls