#include <cstdlib>
#include <ostream>
#include <cmath>
#include "internal_macros.h"
#include "log.h"
Go to the source code of this file.
Classes | |
class | benchmark::internal::CheckHandler |
Namespaces | |
benchmark | |
benchmark::internal | |
Macros | |
#define | CHECK(b) |
#define | CHECK_EQ(a, b) CHECK((a) == (b)) |
#define | CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) |
#define | CHECK_FLOAT_GE(a, b, eps) CHECK((a) - (b) > -(eps)) |
#define | CHECK_FLOAT_GT(a, b, eps) CHECK((a) - (b) > (eps)) |
#define | CHECK_FLOAT_LE(a, b, eps) CHECK((b) - (a) > -(eps)) |
#define | CHECK_FLOAT_LT(a, b, eps) CHECK((b) - (a) > (eps)) |
#define | CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) |
#define | CHECK_GE(a, b) CHECK((a) >= (b)) |
#define | CHECK_GT(a, b) CHECK((a) > (b)) |
#define | CHECK_LE(a, b) CHECK((a) <= (b)) |
#define | CHECK_LT(a, b) CHECK((a) < (b)) |
#define | CHECK_NE(a, b) CHECK((a) != (b)) |
Functions | |
BENCHMARK_NORETURN void | benchmark::internal::CallAbortHandler () |
AbortHandlerT *& | benchmark::internal::GetAbortHandler () |
#define CHECK | ( | b | ) |
Definition at line 57 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 65 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 72 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 74 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 76 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 75 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 77 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 73 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 67 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 69 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 68 of file protobuf/third_party/benchmark/src/check.h.
Definition at line 70 of file protobuf/third_party/benchmark/src/check.h.