Home
last modified time | relevance | path

Searched refs:ZRESTRICT (Results 1 – 21 of 21) sorted by relevance

/Zephyr-Core-3.7.0/lib/libc/minimal/include/
Dstdio.h37 int __printf_like(1, 2) printf(const char *ZRESTRICT format, ...);
38 int __printf_like(3, 4) snprintf(char *ZRESTRICT str, size_t len,
39 const char *ZRESTRICT format, ...);
40 int __printf_like(2, 3) sprintf(char *ZRESTRICT str,
41 const char *ZRESTRICT format, ...);
42 int __printf_like(2, 3) fprintf(FILE *ZRESTRICT stream,
43 const char *ZRESTRICT format, ...);
46 int __printf_like(1, 0) vprintf(const char *ZRESTRICT format, va_list list);
47 int __printf_like(3, 0) vsnprintf(char *ZRESTRICT str, size_t len,
48 const char *ZRESTRICT format,
[all …]
Dstring.h19 extern char *strcpy(char *ZRESTRICT d, const char *ZRESTRICT s);
22 extern char *strncpy(char *ZRESTRICT d, const char *ZRESTRICT s,
31 extern char *strcat(char *ZRESTRICT dest,
32 const char *ZRESTRICT src);
33 extern char *strncat(char *ZRESTRICT dest, const char *ZRESTRICT src,
42 extern void *memcpy(void *ZRESTRICT d, const void *ZRESTRICT s,
Dtime.h52 struct tm *gmtime_r(const time_t *ZRESTRICT timep,
53 struct tm *ZRESTRICT result);
/Zephyr-Core-3.7.0/lib/libc/minimal/source/stdout/
Dfprintf.c15 int fprintf(FILE *ZRESTRICT stream, const char *ZRESTRICT format, ...) in fprintf()
27 int vfprintf(FILE *ZRESTRICT stream, const char *ZRESTRICT format, in vfprintf()
37 int printf(const char *ZRESTRICT format, ...) in printf()
49 int vprintf(const char *ZRESTRICT format, va_list vargs) in vprintf()
Dsprintf.c28 int snprintf(char *ZRESTRICT str, size_t len, in snprintf()
29 const char *ZRESTRICT format, ...) in snprintf()
52 int sprintf(char *ZRESTRICT str, const char *ZRESTRICT format, ...) in sprintf()
70 int vsnprintf(char *ZRESTRICT str, size_t len, in vsnprintf()
71 const char *ZRESTRICT format, va_list vargs) in vsnprintf()
90 int vsprintf(char *ZRESTRICT str, const char *ZRESTRICT format, in vsprintf()
Dstdout_console.c46 int fputs(const char *ZRESTRICT s, FILE *ZRESTRICT stream) in fputs()
68 size_t z_impl_zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, in z_impl_zephyr_fwrite()
69 size_t nitems, FILE *ZRESTRICT stream) in z_impl_zephyr_fwrite()
99 static inline size_t z_vrfy_zephyr_fwrite(const void *ZRESTRICT ptr, in z_vrfy_zephyr_fwrite()
101 FILE *ZRESTRICT stream) in z_vrfy_zephyr_fwrite()
110 size_t fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, in fwrite()
111 FILE *ZRESTRICT stream) in fwrite()
/Zephyr-Core-3.7.0/include/zephyr/posix/
Dsemaphore.h19 int sem_getvalue(sem_t *ZRESTRICT semaphore, int *ZRESTRICT value);
22 int sem_timedwait(sem_t *ZRESTRICT semaphore, struct timespec *ZRESTRICT abstime);
Dsignal.h101 int sigprocmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset);
103 int pthread_sigmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset);
Dpthread.h132 int pthread_condattr_getclock(const pthread_condattr_t *ZRESTRICT att,
133 clockid_t *ZRESTRICT clock_id);
335 int pthread_barrierattr_getpshared(const pthread_barrierattr_t *ZRESTRICT attr,
336 int *ZRESTRICT pshared);
394 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *ZRESTRICT attr,
395 int *ZRESTRICT pshared);
398 int pthread_attr_getguardsize(const pthread_attr_t *ZRESTRICT attr, size_t *ZRESTRICT guardsize);
Daio.h37 int lio_listio(int mode, struct aiocb *const ZRESTRICT list[], int nent,
38 struct sigevent *ZRESTRICT sig);
/Zephyr-Core-3.7.0/lib/libc/minimal/source/string/
Dstring.c20 char *strcpy(char *ZRESTRICT d, const char *ZRESTRICT s) in strcpy()
42 char *strncpy(char *ZRESTRICT d, const char *ZRESTRICT s, size_t n) in strncpy()
193 char *strcat(char *ZRESTRICT dest, const char *ZRESTRICT src) in strcat()
199 char *strncat(char *ZRESTRICT dest, const char *ZRESTRICT src, in strncat()
279 void *memcpy(void *ZRESTRICT d, const void *ZRESTRICT s, size_t n) in memcpy()
/Zephyr-Core-3.7.0/lib/libc/common/include/
Dthreads.h55 int mtx_timedlock(mtx_t *ZRESTRICT mutex, const struct timespec *ZRESTRICT time_point);
61 int cnd_timedwait(cnd_t *ZRESTRICT cond, mtx_t *ZRESTRICT mtx, const struct timespec *ZRESTRICT ts);
/Zephyr-Core-3.7.0/lib/libc/common/source/time/
Dgmtime_r.c35 struct tm *ZRESTRICT tp) in time_civil_from_days()
80 struct tm *gmtime_r(const time_t *ZRESTRICT timep, in gmtime_r()
81 struct tm *ZRESTRICT result) in gmtime_r()
/Zephyr-Core-3.7.0/include/zephyr/sys/
Dlibc-hooks.h41 __syscall size_t zephyr_fwrite(const void *ZRESTRICT ptr, size_t size,
42 size_t nitems, FILE *ZRESTRICT stream);
/Zephyr-Core-3.7.0/include/zephyr/toolchain/
Dcommon.h34 #ifndef ZRESTRICT
36 #define ZRESTRICT restrict macro
38 #define ZRESTRICT macro
Dgcc.h93 #define ZRESTRICT __restrict macro
95 #define ZRESTRICT restrict macro
/Zephyr-Core-3.7.0/lib/posix/options/
Daio.c72 int lio_listio(int mode, struct aiocb *const ZRESTRICT list[], int nent, in lio_listio()
73 struct sigevent *ZRESTRICT sig) in lio_listio()
Dsignal.c104 int sigprocmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset) in sigprocmask()
Dcond.c241 int pthread_condattr_getclock(const pthread_condattr_t *ZRESTRICT att, in pthread_condattr_getclock()
242 clockid_t *ZRESTRICT clock_id) in pthread_condattr_getclock()
Drwlock.c393 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *ZRESTRICT attr, in pthread_rwlockattr_getpshared()
394 int *ZRESTRICT pshared) in pthread_rwlockattr_getpshared()
Dpthread.c1287 int pthread_attr_getguardsize(const pthread_attr_t *ZRESTRICT _attr, size_t *ZRESTRICT guardsize) in pthread_attr_getguardsize()
1415 int pthread_sigmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset) in pthread_sigmask()