Home
last modified time | relevance | path

Searched refs:__restrict (Results 1 – 20 of 20) sorted by relevance

/xnu-8019.80.24/libsyscall/wrappers/spawn/
H A Dspawn.h60 int posix_spawn(pid_t * __restrict, const char * __restrict,
62 const posix_spawnattr_t * __restrict,
63 char *const __argv[__restrict],
64 …char *const __envp[__restrict]) __API_AVAILABLE(macos(10.5), ios(2.0)) __SPI_AVAILABLE(watchos(2.0…
66 int posix_spawnp(pid_t * __restrict, const char * __restrict,
68 const posix_spawnattr_t * __restrict,
69 char *const __argv[__restrict],
70 char *const __envp[__restrict]) __API_AVAILABLE(macos(10.5), ios(2.0));
78 posix_spawn_file_actions_t * __restrict, int,
79 …const char * __restrict, int, mode_t) __API_AVAILABLE(macos(10.5), ios(2.0)) __SPI_AVAILABLE(watch…
[all …]
H A Dspawn_private.h35 int posix_spawnattr_getpcontrol_np(const posix_spawnattr_t * __restrict, int * __restrict) __AP…
38 int posix_spawnattr_getprocesstype_np(const posix_spawnattr_t * __restrict, int * __restrict) _…
41 int posix_spawnattr_setcpumonitor(posix_spawnattr_t * __restrict, uint64_t, uint64_t) __API_AVA…
42 int posix_spawnattr_getcpumonitor(posix_spawnattr_t * __restrict, uint64_t *, uint64_t *) __API…
43 int posix_spawnattr_setcpumonitor_default(posix_spawnattr_t * __restrict) __API_AVAILABLE(macos…
46 int posix_spawnattr_setjetsam(posix_spawnattr_t * __restrict attr,
50 int posix_spawnattr_setjetsam_ext(posix_spawnattr_t * __restrict attr,
54 int posix_spawnattr_set_jetsam_ttr_np(const posix_spawnattr_t * __restrict attr, uint32_t count…
56 int posix_spawnattr_set_threadlimit_ext(posix_spawnattr_t * __restrict attr,
59 int posix_spawnattr_set_portlimits_ext(posix_spawnattr_t * __restrict attr,
[all …]
H A Dposix_spawn.c48 extern int __posix_spawn(pid_t * __restrict, const char * __restrict,
49 struct _posix_spawn_args_desc *, char *const argv[__restrict],
50 char *const envp[__restrict]);
329 posix_spawnattr_getflags(const posix_spawnattr_t * __restrict attr, in posix_spawnattr_getflags()
330 short * __restrict flagsp) in posix_spawnattr_getflags()
366 posix_spawnattr_getsigdefault(const posix_spawnattr_t * __restrict attr, in posix_spawnattr_getsigdefault()
367 sigset_t * __restrict sigdefault) in posix_spawnattr_getsigdefault()
402 posix_spawnattr_getpgroup(const posix_spawnattr_t * __restrict attr, in posix_spawnattr_getpgroup()
403 pid_t * __restrict pgroup) in posix_spawnattr_getpgroup()
439 posix_spawnattr_getsigmask(const posix_spawnattr_t * __restrict attr, in posix_spawnattr_getsigmask()
[all …]
H A Dposix_spawn_filtering.c39 extern int __posix_spawn(pid_t * __restrict, const char * __restrict,
40 struct _posix_spawn_args_desc *, char *const argv[__restrict],
41 char *const envp[__restrict]);
/xnu-8019.80.24/libsyscall/wrappers/
H A Dselect-base.c41 extern int __select(int, fd_set * __restrict, fd_set * __restrict,
42 fd_set * __restrict, struct timeval * __restrict);
44 int __pselect(int, fd_set * __restrict, fd_set * __restrict,
45 fd_set * __restrict, const struct timespec * __restrict, const sigset_t * __restrict);
48 int __select_nocancel(int, fd_set * __restrict, fd_set * __restrict,
49 fd_set * __restrict, struct timeval * __restrict);
51 int __pselect_nocancel(int, fd_set * __restrict, fd_set * __restrict,
52 fd_set * __restrict, const struct timespec * __restrict, const sigset_t * __restrict);
62 select(int nfds, fd_set * __restrict readfds, fd_set * __restrict writefds, in select()
63 fd_set * __restrict exceptfds, struct timeval * __restrict in select()
[all …]
H A Dposix_sem_obsolete.c40 sem_getvalue(sem_t * __restrict __unused s, int * __restrict __unused x) in sem_getvalue()
H A D_libkernel_init.h81 void * (*memccpy)(void *__restrict dst, const void *__restrict src, int c, size_t n);
H A D_libc_funcptr.c171 memccpy(void *__restrict dst, const void *__restrict src, int c, size_t n) in memccpy()
/xnu-8019.80.24/bsd/sys/
H A Dselect.h177 int pselect(int, fd_set * __restrict, fd_set * __restrict,
178 fd_set * __restrict, const struct timespec * __restrict,
179 const sigset_t * __restrict)
H A D_select.h43 int select(int, fd_set * __restrict, fd_set * __restrict,
44 fd_set * __restrict, struct timeval * __restrict)
H A Dtime.h250 int gettimeofday(struct timeval * __restrict, void * __restrict);
254 int setitimer(int, const struct itimerval * __restrict,
255 struct itimerval * __restrict);
H A Dsocket.h1456 int accept(int, struct sockaddr * __restrict, socklen_t * __restrict)
1460 int getpeername(int, struct sockaddr * __restrict, socklen_t * __restrict)
1462 int getsockname(int, struct sockaddr * __restrict, socklen_t * __restrict)
1464 int getsockopt(int, int, int, void * __restrict, socklen_t * __restrict);
1467 ssize_t recvfrom(int, void *, size_t, int, struct sockaddr * __restrict,
1468 socklen_t * __restrict) __DARWIN_ALIAS_C(recvfrom);
H A Dsemaphore.h55 int sem_getvalue(sem_t * __restrict, int * __restrict) __deprecated;
H A Dcdefs.h270 #define __restrict macro
272 #define __restrict restrict macro
/xnu-8019.80.24/libsyscall/wrappers/legacy/
H A Dgetpeername.c39 extern int __getpeername(int, struct sockaddr * __restrict, socklen_t * __restrict);
45 getpeername(int socket, struct sockaddr * __restrict address, in getpeername()
46 socklen_t * __restrict address_len) in getpeername()
H A Dgetsockname.c39 extern int __getsockname(int, struct sockaddr * __restrict, socklen_t * __restrict);
45 getsockname(int socket, struct sockaddr * __restrict address, in getsockname()
46 socklen_t * __restrict address_len) in getsockname()
H A Drecvfrom.c39 …_recvfrom_nocancel(int, void *, size_t, int, struct sockaddr * __restrict, socklen_t * __restrict);
45 …t s, void *buf, size_t len, int flags, struct sockaddr * __restrict from, socklen_t * __restrict f… in recvfrom()
/xnu-8019.80.24/osfmk/vm/
H A Dlz4.h77 size_t lz4raw_encode_buffer(uint8_t * __restrict dst_buffer, size_t dst_size,
78 const uint8_t * __restrict src_buffer, size_t src_size,
81 size_t lz4raw_decode_buffer(uint8_t * __restrict dst_buffer, size_t dst_size,
82 const uint8_t * __restrict src_buffer, size_t src_size,
83 void * __restrict work __attribute__((unused)));
H A Dlz4.c38 lz4raw_decode_buffer(uint8_t * __restrict dst_buffer, size_t dst_size, in lz4raw_decode_buffer()
39 const uint8_t * __restrict src_buffer, size_t src_size, in lz4raw_decode_buffer()
40 void * __restrict work __attribute__((unused))) in lz4raw_decode_buffer()
402 lz4raw_encode_buffer(uint8_t * __restrict dst_buffer, size_t dst_size, in lz4raw_encode_buffer()
403 const uint8_t * __restrict src_buffer, size_t src_size, in lz4raw_encode_buffer()
/xnu-8019.80.24/bsd/kern/
H A Dkern_sysctl.c227 fill_user32_eproc(proc_t, struct user32_eproc *__restrict);
229 fill_user32_externproc(proc_t, struct user32_extern_proc *__restrict);
231 fill_user64_eproc(proc_t, struct user64_eproc *__restrict);
233 fill_user64_proc(proc_t, struct user64_kinfo_proc *__restrict);
235 fill_user64_externproc(proc_t, struct user64_extern_proc *__restrict);
237 fill_user32_proc(proc_t, struct user32_kinfo_proc *__restrict);
891 fill_user32_eproc(proc_t p, struct user32_eproc *__restrict ep) in fill_user32_eproc()
947 fill_user64_eproc(proc_t p, struct user64_eproc *__restrict ep) in fill_user64_eproc()
1004 fill_user32_externproc(proc_t p, struct user32_extern_proc *__restrict exp) in fill_user32_externproc()
1056 fill_user64_externproc(proc_t p, struct user64_extern_proc *__restrict exp) in fill_user64_externproc()
[all …]