Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
279 B

  1. // bench.h - written and placed in the public domain by Wei Dai
  2. #ifndef CRYPTOPP_BENCH_H
  3. #define CRYPTOPP_BENCH_H
  4. #include "cryptlib.h"
  5. extern const double CLOCK_TICKS_PER_SECOND;
  6. void BenchmarkAll(double t, double hertz);
  7. void BenchmarkAll2(double t, double hertz);
  8. #endif