#include <cassert>
#include <cstdint>
Go to the source code of this file.
|
| #define | DCHECK(condition) assert((condition)) |
| |
| #define | DCHECK_EQ(x, y) assert((x) == (y)) |
| |
| #define | DCHECK_GE(x, y) assert((x) >= (y)) |
| |
| #define | DCHECK_GT(x, y) assert((x) > (y)) |
| |
| #define | DCHECK_LE(x, y) assert((x) <= (y)) |
| |
| #define | DCHECK_LT(x, y) assert((x) < (y)) |
| |
| #define | CHECK_EQ(x, y) assert((x) == (y)) |
| |
|
| using | uint8 = std::uint8_t |
| |
| using | int16 = std::int16_t |
| |
| using | uint16 = std::uint16_t |
| |
| using | int32 = std::int32_t |
| |
| using | uint32 = std::uint32_t |
| |
◆ CHECK_EQ
| #define CHECK_EQ |
( |
|
x, |
|
|
|
y |
|
) |
| assert((x) == (y)) |
◆ DCHECK
| #define DCHECK |
( |
|
condition | ) |
assert((condition)) |
◆ DCHECK_EQ
| #define DCHECK_EQ |
( |
|
x, |
|
|
|
y |
|
) |
| assert((x) == (y)) |
◆ DCHECK_GE
| #define DCHECK_GE |
( |
|
x, |
|
|
|
y |
|
) |
| assert((x) >= (y)) |
◆ DCHECK_GT
| #define DCHECK_GT |
( |
|
x, |
|
|
|
y |
|
) |
| assert((x) > (y)) |
◆ DCHECK_LE
| #define DCHECK_LE |
( |
|
x, |
|
|
|
y |
|
) |
| assert((x) <= (y)) |
◆ DCHECK_LT
| #define DCHECK_LT |
( |
|
x, |
|
|
|
y |
|
) |
| assert((x) < (y)) |
◆ int16
| using int16 = std::int16_t |
◆ int32
| using int32 = std::int32_t |
◆ uint16
◆ uint32
◆ uint8
| using uint8 = std::uint8_t |