Searched refs:_Nonnull (Results 1 – 12 of 12) sorted by relevance
/freebsd/sys/sys/ |
H A D | systm.h | 239 int sscanf(const char *, char const * _Nonnull, ...) __scanflike(2, 3); 240 int vsscanf(const char * _Nonnull, char const * _Nonnull, __va_list) __scanflike(2, 0); 255 void explicit_bzero(void * _Nonnull, size_t); 257 void *memset(void * _Nonnull buf, int c, size_t len); 258 void *memcpy(void * _Nonnull to, const void * _Nonnull from, size_t len); 259 void *memmove(void * _Nonnull dest, const void * _Nonnull src, size_t n); 288 void *memset_early(void * _Nonnull buf, int c, size_t len); 290 void *memcpy_early(void * _Nonnull to, const void * _Nonnull from, size_t len); 291 void *memmove_early(void * _Nonnull dest, const void * _Nonnull src, size_t n); 306 void * _Nonnull __restrict kaddr, size_t len, [all …]
|
H A D | cdefs.h | 660 #define _Nonnull macro
|
/freebsd/include/ |
H A D | stdlib.h | 86 int atexit(void (* _Nonnull)(void)) __noexcept; 91 size_t, int (*)(const void * _Nonnull, const void *)); 105 int (* _Nonnull)(const void *, const void *)); 263 int atexit_b(void (^ _Nonnull)(void)); 265 size_t, int (^ _Nonnull)(const void *, const void *)); 293 int (* _Nonnull)(const void *, const void *)); 296 int (^ _Nonnull)(const void *, const void *)); 298 int (^ _Nonnull)(const void *, const void *));
|
H A D | signal.h | 86 int sigpending(sigset_t * _Nonnull); 88 int sigsuspend(const sigset_t * _Nonnull); 89 int sigwait(const sigset_t * _Nonnull __restrict, 90 int * _Nonnull __restrict);
|
/freebsd/sys/amd64/amd64/ |
H A D | machdep.c | 1851 void *memmove_std(void * _Nonnull dst, const void * _Nonnull src, 1853 void *memmove_erms(void * _Nonnull dst, const void * _Nonnull src, 1855 void *memcpy_std(void * _Nonnull dst, const void * _Nonnull src, 1857 void *memcpy_erms(void * _Nonnull dst, const void * _Nonnull src, 1872 memmove(void * _Nonnull dst, const void * _Nonnull src, size_t len) in memmove() 1879 memcpy(void * _Nonnull dst, const void * _Nonnull src, size_t len) in memcpy() 1892 DEFINE_IFUNC(, void *, memmove, (void * _Nonnull, const void * _Nonnull, 1900 DEFINE_IFUNC(, void *, memcpy, (void * _Nonnull, const void * _Nonnull,size_t))
|
/freebsd/lib/libthr/thread/ |
H A D | thr_private.h | 861 int _pthread_mutex_consistent(pthread_mutex_t * _Nonnull); 862 int _pthread_mutexattr_getrobust(pthread_mutexattr_t * _Nonnull __restrict, 863 int * _Nonnull __restrict); 864 int _pthread_mutexattr_setrobust(pthread_mutexattr_t * _Nonnull, int);
|
/freebsd/tools/build/cross-build/include/common/sys/ |
H A D | cdefs.h | 200 #define _Nonnull macro
|
/freebsd/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/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | AttrDocs.td | 4142 be null (``_Nonnull``). 4146 for null (the ``_Nonnull`` qualifier), or for which the purpose of null is 4157 int fetch(int * _Nonnull ptr) { return *ptr; } 4165 const char *join_strings(const char * _Nonnull * _Nullable strings, unsigned n); 4188 ``optional<int> _Nullable`` is redundant and ``optional<int> _Nonnull`` is 4198 The ``_Nonnull`` nullability qualifier indicates that null is not a meaningful 4199 value for a value of the ``_Nonnull`` pointer type. For example, given a 4204 int fetch(int * _Nonnull ptr); 4209 ``_Nonnull`` does not imply that passing null is undefined behavior: ``fetch`` 4228 represent null values, and so the ``_Nullable``, ``_Nonnull`` etc qualifiers [all …]
|
H A D | TokenKinds.def | 717 KEYWORD(_Nonnull , KEYALL)
|
H A D | Attr.td | 2268 let Spellings = [CustomKeyword<"_Nonnull">];
|
H A D | DiagnosticSemaKinds.td | 11942 "type specifier (_Nonnull, _Nullable, or _Null_unspecified)">, 11945 "array parameter is missing a nullability type specifier (_Nonnull, " 11949 "insert '%select{_Nonnull|_Nullable|_Null_unspecified}0' if the " 11954 "inferring '_Nonnull' for pointer type within %select{array|reference}0 is "
|