HomeSort by: relevance | last modified time | path
    Searched defs:STATIC_ASSERT (Results 1 - 7 of 7) sorted by relevancy

  /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/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/mpl/bind/dist/lib/isc/include/isc/
util.h 283 #define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
285 #define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
291 #define STATIC_ASSERT(x, msg) \
295 #define STATIC_ASSERT(cond, msg)
  /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/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));
  /src/external/gpl3/gcc.old/dist/gcc/
system.h 842 /* static_assert (COND, MESSAGE) is available in C++11 onwards. */
844 #define STATIC_ASSERT(X) \
845 static_assert ((X), #X)
847 #define STATIC_ASSERT(X) \
  /src/external/gpl3/gcc/dist/gcc/
system.h 874 #define STATIC_ASSERT(X) \
875 static_assert ((X), #X)
877 #define STATIC_ASSERT(X) \

Completed in 31 milliseconds