Home
last modified time | relevance | path

Searched refs:PW_CHECK_UINT_LE (Results 1 – 8 of 8) sorted by relevance

/external/pigweed/pw_i2c/
Daddress.cc23 PW_CHECK_UINT_LE(address_, kMaxTenBitAddress); in Address()
28 PW_CHECK_UINT_LE(address_, kMaxSevenBitAddress); in GetSevenBit()
/external/pigweed/pw_assert/
Dassert_backend_compile_test_c.c108 PW_CHECK_UINT_LE(x_uint, y_uint); in AssertBackendCompileTestsInC()
109 PW_CHECK_UINT_LE(x_uint, y_uint, "UINT: " FAIL_IF_DISPLAYED); in AssertBackendCompileTestsInC()
110 PW_CHECK_UINT_LE(x_uint, y_uint, "UINT: " FAIL_IF_DISPLAYED_ARGS, z); in AssertBackendCompileTestsInC()
Dassert_backend_compile_test.cc109 PW_CHECK_UINT_LE(x_uint, y_uint); in TEST()
110 PW_CHECK_UINT_LE(x_uint, y_uint, "UINT: " FAIL_IF_DISPLAYED); in TEST()
111 PW_CHECK_UINT_LE(x_uint, y_uint, "UINT: " FAIL_IF_DISPLAYED_ARGS, z); in TEST()
Dassert_facade_test.cc165 TEST_F(AssertPass, UintLe1) { PW_CHECK_UINT_LE(1, 2); } in TEST_F()
166 TEST_F(AssertPass, UintLe2) { PW_CHECK_UINT_LE(2, 2); } in TEST_F()
167 TEST_F(AssertFail, UintLe3) { PW_CHECK_UINT_LE(2, 1); } in TEST_F()
Ddocs.rst234 | PW_CHECK_UINT_LE | unsigned int | a <= b | %u |
/external/pigweed/pw_sync_embos/
Dtimed_mutex.cc52 PW_CHECK_UINT_LE(1, lock_count, "Recursive locking is not permitted"); in try_lock_for()
/external/pigweed/pw_assert/public/pw_assert/
Dshort.h37 #define CHECK_UINT_LE PW_CHECK_UINT_LE
/external/pigweed/pw_assert/public/pw_assert/internal/
Dcheck_impl.h71 #define PW_CHECK_UINT_LE(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, <=, argb, unsigned int, "… macro
79 #define PW_DCHECK_UINT_LE(...) if (!(PW_ASSERT_ENABLE_DEBUG)) {} else PW_CHECK_UINT_LE(__VA_ARGS__)