HomeSort by: relevance | last modified time | path
    Searched refs:STATIC_ASSERT (Results 1 - 25 of 107) sorted by relevancy

1 2 3 4 5

  /src/external/mpl/bind/dist/lib/isc/
job_p.h 28 STATIC_ASSERT(ISC_OS_CACHELINE_SIZE >= sizeof(struct __cds_wfcq_head),
hash.c 41 STATIC_ASSERT(sizeof(key) >= sizeof(isc_hash_key),
md.c 123 STATIC_ASSERT(ISC_MAX_MD_SIZE >= EVP_MAX_MD_SIZE,
135 STATIC_ASSERT(ISC_MAX_MD_SIZE >= EVP_MAX_MD_SIZE,
result.c 538 STATIC_ASSERT(DNS_R_SERVFAIL - DNS_R_NOERROR == 2,
541 STATIC_ASSERT(DNS_R_BADVERS - DNS_R_NOERROR == 16,
544 STATIC_ASSERT(ISC_R_NRESULTS < INT32_MAX, "result.h enum too big");
  /src/external/gpl3/gcc/dist/libgomp/
oacc-profiling.c 42 #define STATIC_ASSERT(expr) _Static_assert (expr, "!(" #expr ")")
47 STATIC_ASSERT (offsetof (acc_event_info, event_type)
49 STATIC_ASSERT (offsetof (acc_event_info, data_event.event_type)
51 STATIC_ASSERT (offsetof (acc_event_info, data_event.event_type)
54 STATIC_ASSERT (offsetof (acc_event_info, data_event.valid_bytes)
56 STATIC_ASSERT (offsetof (acc_event_info, data_event.valid_bytes)
59 STATIC_ASSERT (offsetof (acc_event_info, data_event.parent_construct)
61 STATIC_ASSERT (offsetof (acc_event_info, data_event.parent_construct)
64 STATIC_ASSERT (offsetof (acc_event_info, data_event.implicit)
66 STATIC_ASSERT (offsetof (acc_event_info, data_event.implicit
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/
oacc-profiling.c 42 #define STATIC_ASSERT(expr) _Static_assert (expr, "!(" #expr ")")
47 STATIC_ASSERT (offsetof (acc_event_info, event_type)
49 STATIC_ASSERT (offsetof (acc_event_info, data_event.event_type)
51 STATIC_ASSERT (offsetof (acc_event_info, data_event.event_type)
54 STATIC_ASSERT (offsetof (acc_event_info, data_event.valid_bytes)
56 STATIC_ASSERT (offsetof (acc_event_info, data_event.valid_bytes)
59 STATIC_ASSERT (offsetof (acc_event_info, data_event.parent_construct)
61 STATIC_ASSERT (offsetof (acc_event_info, data_event.parent_construct)
64 STATIC_ASSERT (offsetof (acc_event_info, data_event.implicit)
66 STATIC_ASSERT (offsetof (acc_event_info, data_event.implicit
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/
md.c 119 STATIC_ASSERT(ISC_MAX_MD_SIZE >= EVP_MAX_MD_SIZE,
131 STATIC_ASSERT(ISC_MAX_MD_SIZE >= EVP_MAX_MD_SIZE,
  /src/external/mpl/bind/dist/lib/isc/include/isc/
quota.h 61 STATIC_ASSERT(ISC_OS_CACHELINE_SIZE >= sizeof(struct __cds_wfcq_head),
rwlock.h 169 STATIC_ASSERT(ISC_OS_CACHELINE_SIZE >= sizeof(atomic_uint_fast32_t),
172 STATIC_ASSERT(ISC_OS_CACHELINE_SIZE >= sizeof(atomic_int_fast32_t),
overflow.h 26 STATIC_ASSERT((typeof(a))-1 > 0, \
util.h 290 #define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
292 #define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
298 #define STATIC_ASSERT(x, msg) \
302 #define STATIC_ASSERT(cond, msg)
queue.h 19 STATIC_ASSERT(sizeof(struct __cds_wfcq_head) <= ISC_OS_CACHELINE_SIZE,
  /src/external/mpl/bind/dist/lib/dns/include/dns/
stats.h 191 STATIC_ASSERT(DNS_SIZEHISTO_MAXIN <=
195 STATIC_ASSERT(DNS_SIZEHISTO_MAXOUT <=
  /src/external/mit/libuv/dist/src/
uv-common.h 61 /* C11 defines static_assert to be a macro which calls _Static_assert. */
62 #if defined(static_assert)
63 #define STATIC_ASSERT(expr) static_assert(expr, #expr)
65 #define STATIC_ASSERT(expr) \
460 STATIC_ASSERT(sizeof(v) == sizeof(d));
469 STATIC_ASSERT(sizeof(v) == sizeof(d));
thread-common.c 31 STATIC_ASSERT(sizeof(uv_barrier_t) == sizeof(pthread_barrier_t));
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
util.h 247 #define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
249 #define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
251 #define STATIC_ASSERT(cond, msg) INSIST(cond)
  /src/external/mpl/bind/dist/lib/dns/
qp_p.h 93 STATIC_ASSERT(sizeof(void *) <= sizeof(uint64_t),
155 STATIC_ASSERT(2 <= QP_CHUNK_LOG_MIN && QP_CHUNK_LOG_MIN <= QP_CHUNK_LOG_MAX,
157 STATIC_ASSERT(6 <= QP_CHUNK_LOG_MAX && QP_CHUNK_LOG_MAX <= 20,
163 STATIC_ASSERT(QP_SAFETY_MARGIN >= QP_CHUNK_BYTES,
  /src/external/mit/libuv/dist/src/unix/
linux.c 175 STATIC_ASSERT(40 == sizeof(struct uv__io_cqring_offsets));
189 STATIC_ASSERT(40 == sizeof(struct uv__io_sqring_offsets));
197 STATIC_ASSERT(16 == sizeof(struct uv__io_uring_cqe));
225 STATIC_ASSERT(64 == sizeof(struct uv__io_uring_sqe));
226 STATIC_ASSERT(0 == offsetof(struct uv__io_uring_sqe, opcode));
227 STATIC_ASSERT(1 == offsetof(struct uv__io_uring_sqe, flags));
228 STATIC_ASSERT(2 == offsetof(struct uv__io_uring_sqe, ioprio));
229 STATIC_ASSERT(4 == offsetof(struct uv__io_uring_sqe, fd));
230 STATIC_ASSERT(8 == offsetof(struct uv__io_uring_sqe, off));
231 STATIC_ASSERT(16 == offsetof(struct uv__io_uring_sqe, addr))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/gcn/
gcn.h 175 STATIC_ASSERT (LAST_SGPR_REG + 1 - FIRST_SGPR_REG == 102);
176 STATIC_ASSERT (LAST_VGPR_REG + 1 - FIRST_VGPR_REG == 256);
177 STATIC_ASSERT (LAST_AVGPR_REG + 1 - FIRST_AVGPR_REG == 256);
  /src/external/mit/libuv/dist/src/win/
thread.c 56 STATIC_ASSERT(sizeof(uv_thread_t) <= sizeof(void*));
405 STATIC_ASSERT(sizeof(uv_rwlock_t) == 80);
407 STATIC_ASSERT(sizeof(uv_rwlock_t) == 48);
  /src/external/gpl3/gcc/dist/gcc/
input.h 42 STATIC_ASSERT (BUILTINS_LOCATION < RESERVED_LOCATION_COUNT);
  /src/external/gpl3/gcc.old/dist/gcc/
input.h 37 STATIC_ASSERT (BUILTINS_LOCATION < RESERVED_LOCATION_COUNT);
  /src/external/gpl3/gcc/dist/gcc/cp/
cp-tree.def 342 DEFTREECODE (STATIC_ASSERT, "static_assert", tcc_exceptional, 0)
  /src/external/gpl3/gcc.old/dist/gcc/cp/
cp-tree.def 352 DEFTREECODE (STATIC_ASSERT, "static_assert", tcc_exceptional, 0)
  /src/external/gpl3/gcc/dist/gcc/text-art/
style.cc 127 STATIC_ASSERT (ARRAY_SIZE (fg_normal) == ARRAY_SIZE (fg_bright));
128 STATIC_ASSERT (ARRAY_SIZE (fg_normal) == ARRAY_SIZE (bg_normal));
129 STATIC_ASSERT (ARRAY_SIZE (fg_normal) == ARRAY_SIZE (bg_bright));

Completed in 33 milliseconds

1 2 3 4 5