Searched refs:PW_CHECK_UINT_GE (Results 1 – 7 of 7) sorted by relevance
/external/pigweed/pw_assert/ |
D | assert_backend_compile_test_c.c | 112 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()
|
D | assert_backend_compile_test.cc | 113 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()
|
D | assert_facade_test.cc | 185 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()
|
D | docs.rst | 238 | PW_CHECK_UINT_GE | unsigned int | a >= b | %u |
|
/external/pigweed/pw_blob_store/ |
D | blob_store.cc | 35 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/ |
D | short.h | 39 #define CHECK_UINT_GE PW_CHECK_UINT_GE
|
/external/pigweed/pw_assert/public/pw_assert/internal/ |
D | check_impl.h | 73 #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__)
|