Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/common/
H A Dxxhash.h1525 # define XXH_STATIC_ASSERT_WITH_MESSAGE(c,m) do { static_assert((c),m); } while(0) macro
1527 # define XXH_STATIC_ASSERT_WITH_MESSAGE(c,m) do { static_assert((c),m); } while(0) macro
1529 # define XXH_STATIC_ASSERT_WITH_MESSAGE(c,m) do { struct xxh_sa { char x[(c) ? 1 : -1]; }; } whi… macro
1531 # define XXH_STATIC_ASSERT(c) XXH_STATIC_ASSERT_WITH_MESSAGE((c),#c)