Home
last modified time | relevance | path

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

/xnu-10063.101.15/EXTERNAL_HEADERS/corecrypto/
H A Dcc.h89 #define cc_static_assert(e, m) _Static_assert(e, m) macro
91 #define cc_static_assert(e, m) enum { cc_concat(static_assert_, __COUNTER__) = 1 / (int)(!!(e)) }
93 #define cc_static_assert(e, m)
/xnu-10063.101.15/osfmk/corecrypto/
H A Dcc_internal.h455 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"); \