| 91 | }; |
| 92 | |
| 93 | boost::shared_array<uint8_t> gen_uniform_buffer(uint32_t buf_len, uint8_t c) { |
| 94 | auto* buf = new uint8_t[buf_len]; |
| 95 | memset(buf, c, buf_len); |
| 96 | return boost::shared_array<uint8_t>(buf); |
| 97 | } |
| 98 | |
| 99 | boost::shared_array<uint8_t> gen_compressible_buffer(uint32_t buf_len) { |
| 100 | auto* buf = new uint8_t[buf_len]; |
no outgoing calls
no test coverage detected