Searched refs:_Nonnull (Results 1 – 12 of 12) sorted by relevance
| /freebsd-14.2/sys/sys/ |
| H A D | systm.h | 234 int vsscanf(const char * _Nonnull, char const * _Nonnull, __va_list) __scanflike(2, 0); 249 void explicit_bzero(void * _Nonnull, size_t); 251 void *memset(void * _Nonnull buf, int c, size_t len); 252 void *memcpy(void * _Nonnull to, const void * _Nonnull from, size_t len); 253 void *memmove(void * _Nonnull dest, const void * _Nonnull src, size_t n); 284 void *memcpy_early(void * _Nonnull to, const void * _Nonnull from, size_t len); 285 void *memmove_early(void * _Nonnull dest, const void * _Nonnull src, size_t n); 300 void * _Nonnull __restrict kaddr, size_t len, 303 void * _Nonnull __restrict kaddr, size_t len); 305 void * _Nonnull __restrict kaddr, size_t len); [all …]
|
| H A D | cdefs.h | 788 #define _Nonnull macro
|
| /freebsd-14.2/include/ |
| H A D | stdlib.h | 91 int atexit(void (* _Nonnull)(void)); 96 size_t, int (*)(const void * _Nonnull, const void *)); 110 int (* _Nonnull)(const void *, const void *)); 268 int atexit_b(void (^ _Nonnull)(void)); 270 size_t, int (^ _Nonnull)(const void *, const void *)); 298 int (* _Nonnull)(const void *, const void *)); 301 int (^ _Nonnull)(const void *, const void *)); 303 int (^ _Nonnull)(const void *, const void *));
|
| H A D | signal.h | 88 int sigpending(sigset_t * _Nonnull); 90 int sigsuspend(const sigset_t * _Nonnull); 91 int sigwait(const sigset_t * _Nonnull __restrict, 92 int * _Nonnull __restrict);
|
| /freebsd-14.2/sys/amd64/amd64/ |
| H A D | machdep.c | 1847 void *memmove_std(void * _Nonnull dst, const void * _Nonnull src, 1849 void *memmove_erms(void * _Nonnull dst, const void * _Nonnull src, 1851 void *memcpy_std(void * _Nonnull dst, const void * _Nonnull src, 1853 void *memcpy_erms(void * _Nonnull dst, const void * _Nonnull src, 1868 memmove(void * _Nonnull dst, const void * _Nonnull src, size_t len) in memmove() 1875 memcpy(void * _Nonnull dst, const void * _Nonnull src, size_t len) in memcpy() 1888 DEFINE_IFUNC(, void *, memmove, (void * _Nonnull, const void * _Nonnull, 1896 DEFINE_IFUNC(, void *, memcpy, (void * _Nonnull, const void * _Nonnull,size_t))
|
| /freebsd-14.2/lib/libthr/thread/ |
| H A D | thr_private.h | 859 int _pthread_mutex_consistent(pthread_mutex_t * _Nonnull); 860 int _pthread_mutexattr_getrobust(pthread_mutexattr_t * _Nonnull __restrict, 861 int * _Nonnull __restrict); 862 int _pthread_mutexattr_setrobust(pthread_mutexattr_t * _Nonnull, int);
|
| /freebsd-14.2/tools/build/cross-build/include/common/sys/ |
| H A D | cdefs.h | 200 #define _Nonnull macro
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | Checkers.td | 343 "_Nonnull type.">, 349 "_Nonnull return type.">, 360 "_Nonnull type.">, 366 "_Nonnull return type.">, 383 HelpText<"Trust that returns from framework methods annotated with _Nonnull "
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | AttrDocs.td | 4055 be null (``_Nonnull``). 4059 for null (the ``_Nonnull`` qualifier), or for which the purpose of null is 4070 int fetch(int * _Nonnull ptr) { return *ptr; } 4097 The ``_Nonnull`` nullability qualifier indicates that null is not a meaningful 4098 value for a value of the ``_Nonnull`` pointer type. For example, given a 4103 int fetch(int * _Nonnull ptr); 4108 ``_Nonnull`` does not imply that passing null is undefined behavior: ``fetch`` 4155 ``_Nonnull`` nor ``_Nullable`` qualifiers make sense for a particular pointer 4196 e.g., remove null checks. The ``_Nonnull`` type qualifier indicates that a 4225 undefined behavior, which the optimizer may take advantage of. The ``_Nonnull`` [all …]
|
| H A D | TokenKinds.def | 690 KEYWORD(_Nonnull , KEYALL)
|
| H A D | Attr.td | 2148 let Spellings = [CustomKeyword<"_Nonnull">];
|
| H A D | DiagnosticSemaKinds.td | 11727 "type specifier (_Nonnull, _Nullable, or _Null_unspecified)">, 11730 "array parameter is missing a nullability type specifier (_Nonnull, " 11734 "insert '%select{_Nonnull|_Nullable|_Null_unspecified}0' if the " 11739 "inferring '_Nonnull' for pointer type within %select{array|reference}0 is "
|