Home | History | Annotate | Download | only in lib

Lines Matching refs:verify

26    here generates easier-to-read diagnostics when verify (R) fails.
47 If _Static_assert works, verify (R) uses it directly. Similarly,
72 the verify macro:
74 void function (int n) { verify (n < 0); }
76 * For the verify macro, the struct _gl_verify_type will need to
88 two uses of the verify macro would yield colliding declarations
96 But this has the problem that two invocations of verify from
136 * GCC warns if -Wnested-externs is enabled and verify() is used
161 /* Verify requirement R at compile-time, as an integer constant expression
189 /* Verify requirement R at compile-time, as a declaration without a
222 integer constant expression contexts. verify (R) is for declaration
225 /* Verify requirement R at compile-time, as an integer constant expression.
232 /* Verify requirement R at compile-time. Return the value of the
238 /* Verify requirement R at compile-time, as a declaration without a
241 # define verify(R) _GL_VERIFY (R, "verify (" #R ")")