Searched refs:cc_static_assert (Results 1 – 2 of 2) sorted by relevance
89 #define cc_static_assert(e, m) _Static_assert(e, m) macro91 #define cc_static_assert(e, m) enum { cc_concat(static_assert_, __COUNTER__) = 1 / (int)(!!(e)) }93 #define cc_static_assert(e, m)
455 cc_static_assert(sizeof(unsigned) == 4, "clz relies on an unsigned int being 4 bytes"); in cc_clz32()498 cc_static_assert(sizeof(unsigned) == 4, "ctz relies on an unsigned int being 4 bytes"); in cc_ctz32()599 cc_static_assert(sizeof(int) == 4, "ffs relies on an int being 4 bytes"); in cc_ffs32()659 cc_static_assert(sizeof(uint64_t) >= sizeof(s), "max type is uint64_t"); \