OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_Static_assert
(Results
1 - 25
of
75
) sorted by relevancy
1
2
3
/src/tests/usr.bin/xlint/lint1/
msg_354.c
4
// Test for message: '
_Static_assert
' requires C11 or later [354]
11
/* expect+1: error: '
_Static_assert
' requires C11 or later [354] */
12
_Static_assert
(1 > 0, "message");
13
/* expect+1: error: '
_Static_assert
' without message requires C23 or later [355] */
14
_Static_assert
(1 > 0);
msg_355.c
4
// Test for message: '
_Static_assert
' without message requires C23 or later [355]
11
_Static_assert
(1 > 0, "message");
12
/* expect+1: error: '
_Static_assert
' without message requires C23 or later [355] */
13
_Static_assert
(1 > 0);
c23.c
82
_Static_assert
(1 > 0, "string");
83
_Static_assert
(1 > 0);
c11.c
70
_Static_assert
(1 > 0, "string");
/src/external/gpl3/binutils/dist/libctf/
swap.h
70
#ifndef
_Static_assert
71
#define
_Static_assert
(cond, err)
80
_Static_assert
(sizeof (x) == 1 || (sizeof (x) % 2 == 0 \
/src/external/gpl3/binutils.old/dist/libctf/
swap.h
70
#ifndef
_Static_assert
71
#define
_Static_assert
(cond, err)
80
_Static_assert
(sizeof (x) == 1 || (sizeof (x) % 2 == 0 \
/src/external/gpl3/gdb/dist/libctf/
swap.h
70
#ifndef
_Static_assert
71
#define
_Static_assert
(cond, err)
80
_Static_assert
(sizeof (x) == 1 || (sizeof (x) % 2 == 0 \
/src/external/gpl3/gdb.old/dist/libctf/
swap.h
70
#ifndef
_Static_assert
71
#define
_Static_assert
(cond, err)
80
_Static_assert
(sizeof (x) == 1 || (sizeof (x) % 2 == 0 \
/src/external/gpl3/gcc/dist/fixincludes/tests/base/
assert.h
24
#define static_assert
_Static_assert
/src/external/gpl3/gcc.old/dist/fixincludes/tests/base/
assert.h
24
#define static_assert
_Static_assert
/src/external/gpl3/gdb/dist/gnulib/import/
verify.h
24
/* Define _GL_HAVE__STATIC_ASSERT to 1 if
_Static_assert
(R, DIAGNOSTIC)
27
Define _GL_HAVE__STATIC_ASSERT1 to 1 if
_Static_assert
(R) works as
47
system headers, defines a conflicting
_Static_assert
that is no
51
# undef
_Static_assert
58
If
_Static_assert
works, verify (R) uses it directly. Similarly,
59
_GL_VERIFY_TRUE works by packaging a
_Static_assert
inside a struct
63
compilers that do not support
_Static_assert
:
144
which do not support
_Static_assert
, also do not warn about the
192
_Static_assert
(R, DIAGNOSTIC); \
204
two, so that the
_Static_assert
macro optionally defined below support
[
all
...]
/src/external/gpl3/gdb.old/dist/gnulib/import/
verify.h
24
/* Define _GL_HAVE__STATIC_ASSERT to 1 if
_Static_assert
(R, DIAGNOSTIC)
27
Define _GL_HAVE__STATIC_ASSERT1 to 1 if
_Static_assert
(R) works as
47
system headers, defines a conflicting
_Static_assert
that is no
51
# undef
_Static_assert
58
If
_Static_assert
works, verify (R) uses it directly. Similarly,
59
_GL_VERIFY_TRUE works by packaging a
_Static_assert
inside a struct
63
compilers that do not support
_Static_assert
:
144
which do not support
_Static_assert
, also do not warn about the
192
_Static_assert
(R, DIAGNOSTIC); \
204
two, so that the
_Static_assert
macro optionally defined below support
[
all
...]
/src/external/lgpl3/mpfr/dist/src/
mpfr-sassert.h
44
# define MPFR_STAT_STATIC_ASSERT(c)
_Static_assert
((c), #c )
/src/include/
assert.h
100
#define static_assert
_Static_assert
/src/usr.sbin/fstyp/
hfsplus.c
99
_Static_assert
(sizeof(struct hfsp_vol_hdr) == 512, "");
exfat.c
119
_Static_assert
(sizeof(struct exfat_dirent) == 32, "spec");
127
_Static_assert
(sizeof(struct exfat_de_label) == 32, "spec");
/src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_intrinsics.h
45
_Static_assert
(sizeof(__val) == sizeof(__Bits)); \
46
_Static_assert
(sizeof(__Bits) == 2 * sizeof(int)); \
57
_Static_assert
(sizeof(long) == sizeof(long long) || \
80
_Static_assert
(sizeof(__tmp) == sizeof(__val)); \
129
_Static_assert
(sizeof(__val) == sizeof(__Bits)); \
130
_Static_assert
(sizeof(__Bits) == 2 * sizeof(int)); \
147
_Static_assert
(sizeof(long) == sizeof(long long) || \
166
_Static_assert
(sizeof(__tmp) == sizeof(__val)); \
/src/external/apache2/mDNSResponder/dist/mDNSShared/
general.h
552
#define mdns_compile_time_check(EXPRESSION, MESSAGE)
_Static_assert
(EXPRESSION, MESSAGE)
578
#define mdns_compile_time_check_local(EXPRESSION)
_Static_assert
(EXPRESSION, "Compile-time assertion failed.")
/src/external/gpl3/gcc/dist/libgcc/soft-fp/
soft-fp.h
63
_Static_assert
((expr), msg)
/src/external/gpl3/gcc/dist/libgfortran/config/
fpu-aarch64.h
58
_Static_assert
(sizeof(struct fenv) <= (size_t) GFC_FPE_STATE_BUFFER_SIZE,
fpu-aix.h
42
_Static_assert
(sizeof(fenv_t) <= (size_t) GFC_FPE_STATE_BUFFER_SIZE,
/src/external/gpl3/gcc/dist/libgfortran/runtime/
string.c
245
_Static_assert
(sizeof(GFC_UINTEGER_LARGEST) <= 2 * sizeof(uint64_t),
/src/external/gpl3/gcc.old/dist/libgcc/soft-fp/
soft-fp.h
67
_Static_assert
((expr), msg)
/src/external/gpl3/gcc.old/dist/libgfortran/config/
fpu-aarch64.h
58
_Static_assert
(sizeof(struct fenv) <= (size_t) GFC_FPE_STATE_BUFFER_SIZE,
fpu-aix.h
42
_Static_assert
(sizeof(fenv_t) <= (size_t) GFC_FPE_STATE_BUFFER_SIZE,
Completed in 42 milliseconds
1
2
3
Indexes created Sat Feb 28 05:31:39 UTC 2026