| 763 | |
| 764 | template <typename T> |
| 765 | inline void GenerateData(int num_values, T* out, std::vector<uint8_t>* heap) { |
| 766 | // seed the prng so failure is deterministic |
| 767 | random_numbers(num_values, 0, std::numeric_limits<T>::min(), |
| 768 | std::numeric_limits<T>::max(), out); |
| 769 | } |
| 770 | |
| 771 | template <typename T> |
| 772 | inline void GenerateBoundData(int num_values, T* out, T min, T max, |
no test coverage detected