Searched refs:_Nonnull (Results 1 – 11 of 11) sorted by relevance
| /freebsd-12.1/sys/sys/ |
| H A D | systm.h | 295 int vsscanf(const char * _Nonnull, char const * _Nonnull, __va_list) __scanflike(2, 0); 310 void bcopy(const void * _Nonnull from, void * _Nonnull to, size_t len); 312 void bzero(void * _Nonnull buf, size_t len); 314 void explicit_bzero(void * _Nonnull, size_t); 320 void *memcpy(void * _Nonnull to, const void * _Nonnull from, size_t len); 322 void *memmove(void * _Nonnull dest, const void * _Nonnull src, size_t n); 329 void *memcpy_early(void * _Nonnull to, const void * _Nonnull from, size_t len); 330 void *memmove_early(void * _Nonnull dest, const void * _Nonnull src, size_t n); 334 void * _Nonnull __restrict kdaddr, size_t len, 337 void * _Nonnull __restrict kaddr, size_t len, [all …]
|
| H A D | cdefs.h | 793 #define _Nonnull macro
|
| /freebsd-12.1/include/ |
| H A D | stdlib.h | 88 int atexit(void (* _Nonnull)(void)); 93 size_t, int (*)(const void * _Nonnull, const void *)); 107 int (* _Nonnull)(const void *, const void *)); 258 int atexit_b(void (^ _Nonnull)(void)); 260 size_t, int (^ _Nonnull)(const void *, const void *)); 286 int (* _Nonnull)(const void *, const void *)); 289 int (^ _Nonnull)(const void *, const void *)); 291 int (^ _Nonnull)(const void *, const void *));
|
| H A D | signal.h | 89 int sigpending(sigset_t * _Nonnull); 91 int sigsuspend(const sigset_t * _Nonnull); 92 int sigwait(const sigset_t * _Nonnull __restrict, 93 int * _Nonnull __restrict);
|
| /freebsd-12.1/sys/amd64/amd64/ |
| H A D | machdep.c | 2718 void *memmove_std(void * _Nonnull dst, const void * _Nonnull src, 2720 void *memmove_erms(void * _Nonnull dst, const void * _Nonnull src, 2722 DEFINE_IFUNC(, void *, memmove, (void * _Nonnull, const void * _Nonnull, 2730 void *memcpy_std(void * _Nonnull dst, const void * _Nonnull src, 2732 void *memcpy_erms(void * _Nonnull dst, const void * _Nonnull src, 2734 DEFINE_IFUNC(, void *, memcpy, (void * _Nonnull, const void * _Nonnull,size_t),
|
| /freebsd-12.1/lib/libthr/thread/ |
| H A D | thr_private.h | 853 int _pthread_mutex_consistent(pthread_mutex_t * _Nonnull); 854 int _pthread_mutexattr_getrobust(pthread_mutexattr_t * _Nonnull __restrict, 855 int * _Nonnull __restrict); 856 int _pthread_mutexattr_setrobust(pthread_mutexattr_t * _Nonnull, int);
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | Checkers.td | 212 "_Nonnull type.">, 217 "_Nonnull return type.">, 226 "_Nonnull type.">, 231 "_Nonnull return type.">, 243 HelpText<"Trust that returns from framework methods annotated with _Nonnull "
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | AttrDocs.td | 2857 …alifiers indicate which pointer types can be null (``_Nullable``) or cannot be null (``_Nonnull``). 2859 …`_Nullable`` qualifier), doesn't have a defined meaning for null (the ``_Nonnull`` qualifier), or … 2864 int fetch(int * _Nonnull ptr) { return *ptr; } 2872 const char *join_strings(const char * _Nonnull * _Nullable strings, unsigned n); 2889 The ``_Nonnull`` nullability qualifier indicates that null is not a meaningful value for a value of… 2893 int fetch(int * _Nonnull ptr); 2895 …e that, unlike the declaration attribute ``nonnull``, the presence of ``_Nonnull`` does not imply … 2915 The ``_Null_unspecified`` nullability qualifier indicates that neither the ``_Nonnull`` nor ``_Null… 2944 …the optimizer may take advantage of to, e.g., remove null checks. The ``_Nonnull`` type qualifier … 2957 …is undefined behavior, which the optimizer may take advantage of. The ``_Nonnull`` type qualifier …
|
| H A D | TokenKinds.def | 615 KEYWORD(_Nonnull , KEYALL)
|
| H A D | Attr.td | 1555 let Spellings = [Keyword<"_Nonnull">];
|
| H A D | DiagnosticSemaKinds.td | 9313 "type specifier (_Nonnull, _Nullable, or _Null_unspecified)">, 9316 "array parameter is missing a nullability type specifier (_Nonnull, " 9320 "insert '%select{_Nonnull|_Nullable|_Null_unspecified}0' if the " 9325 "inferring '_Nonnull' for pointer type within %select{array|reference}0 is "
|