Home
last modified time | relevance | path

Searched refs:PW_CHECK_UINT_GE (Results 1 – 7 of 7) sorted by relevance

/external/pigweed/pw_assert/
Dassert_backend_compile_test_c.c112 PW_CHECK_UINT_GE(x_uint, y_uint); in AssertBackendCompileTestsInC()
113 PW_CHECK_UINT_GE(x_uint, y_uint, "UINT: " FAIL_IF_HIDDEN); in AssertBackendCompileTestsInC()
114 PW_CHECK_UINT_GE(x_uint, y_uint, "UINT: " FAIL_IF_HIDDEN_ARGS, z); in AssertBackendCompileTestsInC()
Dassert_backend_compile_test.cc113 PW_CHECK_UINT_GE(x_uint, y_uint); in TEST()
114 PW_CHECK_UINT_GE(x_uint, y_uint, "UINT: " FAIL_IF_HIDDEN); in TEST()
115 PW_CHECK_UINT_GE(x_uint, y_uint, "UINT: " FAIL_IF_HIDDEN_ARGS, z); in TEST()
Dassert_facade_test.cc185 TEST_F(AssertFail, UintGe1) { PW_CHECK_UINT_GE(1, 2); } in TEST_F()
186 TEST_F(AssertPass, UintGe2) { PW_CHECK_UINT_GE(2, 2); } in TEST_F()
187 TEST_F(AssertPass, UintGe3) { PW_CHECK_UINT_GE(2, 1); } in TEST_F()
Ddocs.rst238 | PW_CHECK_UINT_GE | unsigned int | a >= b | %u |
/external/pigweed/pw_blob_store/
Dblob_store.cc35 PW_CHECK_UINT_GE(write_buffer_.size_bytes(), flash_write_size_bytes_); in Init()
36 PW_CHECK_UINT_GE(flash_write_size_bytes_, partition_.alignment_bytes()); in Init()
382 PW_CHECK_UINT_GE(write_address_, flash_address_); in WriteBufferBytesUsed()
/external/pigweed/pw_assert/public/pw_assert/
Dshort.h39 #define CHECK_UINT_GE PW_CHECK_UINT_GE
/external/pigweed/pw_assert/public/pw_assert/internal/
Dcheck_impl.h73 #define PW_CHECK_UINT_GE(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, >=, argb, unsigned int, "… macro
81 #define PW_DCHECK_UINT_GE(...) if (!(PW_ASSERT_ENABLE_DEBUG)) {} else PW_CHECK_UINT_GE(__VA_ARGS__)