| /f-stack/tools/compat/include/sys/ |
| H A D | socket.h | 673 int accept(int, struct sockaddr * __restrict, socklen_t * __restrict); 677 int accept4(int, struct sockaddr * __restrict, socklen_t * __restrict, int); 681 int getpeername(int, struct sockaddr * __restrict, socklen_t * __restrict); 682 int getsockname(int, struct sockaddr * __restrict, socklen_t * __restrict); 683 int getsockopt(int, int, int, void * __restrict, socklen_t * __restrict); 686 ssize_t recvfrom(int, void *, size_t, int, struct sockaddr * __restrict, socklen_t * __restrict); 690 ssize_t recvmmsg(int, struct mmsghdr * __restrict, size_t, int, 691 const struct timespec * __restrict); 699 ssize_t sendmmsg(int, struct mmsghdr * __restrict, size_t, int);
|
| H A D | sysproto.h | 66 …om_l_[PADL_(struct sockaddr *__restrict)]; struct sockaddr *__restrict from; char from_r_[PADR_(st… 67 …ddr_l_[PADL_(__socklen_t *__restrict)]; __socklen_t *__restrict fromlenaddr; char fromlenaddr_r_[P… 71 …me_l_[PADL_(struct sockaddr *__restrict)]; struct sockaddr *__restrict name; char name_r_[PADR_(st… 72 …amelen_l_[PADL_(__socklen_t *__restrict)]; __socklen_t *__restrict anamelen; char anamelen_r_[PADR… 76 …asa_l_[PADL_(struct sockaddr *__restrict)]; struct sockaddr *__restrict asa; char asa_r_[PADR_(str… 77 …char alen_l_[PADL_(__socklen_t *__restrict)]; __socklen_t *__restrict alen; char alen_r_[PADR_(__s… 81 …asa_l_[PADL_(struct sockaddr *__restrict)]; struct sockaddr *__restrict asa; char asa_r_[PADR_(str… 82 …char alen_l_[PADL_(__socklen_t *__restrict)]; __socklen_t *__restrict alen; char alen_r_[PADR_(__s… 326 …me_l_[PADL_(struct sockaddr *__restrict)]; struct sockaddr *__restrict name; char name_r_[PADR_(st… 327 …amelen_l_[PADL_(__socklen_t *__restrict)]; __socklen_t *__restrict anamelen; char anamelen_r_[PADR…
|
| H A D | uio.h | 91 int copyinfrom(const void * __restrict src, void * __restrict dst, 95 int copyinstrfrom(const void * __restrict src, void * __restrict dst, 96 size_t len, size_t * __restrict copied, int seg);
|
| /f-stack/freebsd/sys/ |
| H A D | libkern.h | 172 char *strcat(char * __restrict, const char * __restrict); 176 char *strcpy(char * __restrict, const char * __restrict); 177 size_t strcspn(const char * __restrict, const char * __restrict) __pure; 178 char *strdup_flags(const char *__restrict, struct malloc_type *, int); 179 char *strdup(const char *__restrict, struct malloc_type *); 181 char *strndup(const char *__restrict, size_t, struct malloc_type *); 187 char *strncpy(char * __restrict, const char * __restrict, size_t);
|
| H A D | socket.h | 679 int accept(int, struct sockaddr * __restrict, socklen_t * __restrict); 683 int accept4(int, struct sockaddr * __restrict, socklen_t * __restrict, int); 687 int getpeername(int, struct sockaddr * __restrict, socklen_t * __restrict); 688 int getsockname(int, struct sockaddr * __restrict, socklen_t * __restrict); 689 int getsockopt(int, int, int, void * __restrict, socklen_t * __restrict); 692 ssize_t recvfrom(int, void *, size_t, int, struct sockaddr * __restrict, socklen_t * __restrict); 696 ssize_t recvmmsg(int, struct mmsghdr * __restrict, size_t, int, 697 const struct timespec * __restrict); 705 ssize_t sendmmsg(int, struct mmsghdr * __restrict, size_t, int);
|
| H A D | select.h | 100 int pselect(int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, 101 const struct timespec *__restrict, const sigset_t *__restrict);
|
| H A D | statvfs.h | 79 int statvfs(const char *__restrict, struct statvfs *__restrict);
|
| H A D | poll.h | 117 const struct timespec *__restrict _timeout, 118 const sigset_t *__restrict _newsigmask);
|
| H A D | systm.h | 398 int copyinstr(const void * __restrict udaddr, 399 void * _Nonnull __restrict kaddr, size_t len, 400 size_t * __restrict lencopied); 401 int copyin(const void * __restrict udaddr, 402 void * _Nonnull __restrict kaddr, size_t len); 403 int copyin_nofault(const void * __restrict udaddr, 404 void * _Nonnull __restrict kaddr, size_t len); 405 int copyout(const void * _Nonnull __restrict kaddr, 406 void * __restrict udaddr, size_t len); 407 int copyout_nofault(const void * _Nonnull __restrict kaddr, [all …]
|
| H A D | stat.h | 387 int lstat(const char * __restrict, struct stat * __restrict); 395 int stat(const char * __restrict, struct stat * __restrict);
|
| H A D | aio.h | 239 int lio_listio(int, struct aiocb *__restrict const *__restrict, int,
|
| /f-stack/tools/compat/include/arpa/ |
| H A D | inet.h | 122 const char *inet_ntop(int, const void * __restrict, char * __restrict, 124 int inet_pton(int, const char * __restrict, void * __restrict);
|
| /f-stack/freebsd/libkern/ |
| H A D | strcat.c | 38 strcat(char * __restrict s, const char * __restrict append) in strcat()
|
| H A D | strcpy.c | 38 (strcpy)(char * __restrict to, const char * __restrict from)
|
| H A D | strncpy.c | 45 strncpy(char * __restrict dst, const char * __restrict src, size_t n) in strncpy()
|
| H A D | strlcpy.c | 31 strlcpy(char * __restrict dst, const char * __restrict src, size_t dsize) in strlcpy()
|
| H A D | strcspn.c | 40 strcspn(const char * __restrict s, const char * __restrict charset) in strcspn()
|
| /f-stack/tools/compat/ |
| H A D | strlcpy.c | 27 strlcpy(char * __restrict dst, const char * __restrict src, size_t siz) in strlcpy()
|
| H A D | compat.h | 98 size_t strlcpy(char * __restrict dst, const char * __restrict src,
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/ |
| H A D | background_thread_externs.h | 27 extern int pthread_create_wrapper(pthread_t *__restrict, const pthread_attr_t *, 28 void *(*)(void *), void *__restrict);
|
| H A D | jemalloc_internal_decls.h | 76 # define restrict __restrict
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/src/ |
| H A D | mutex.c | 32 pthread_create(pthread_t *__restrict thread, in pthread_create() 33 const pthread_attr_t *__restrict attr, void *(*start_routine)(void *), in pthread_create() 34 void *__restrict arg) { in pthread_create()
|
| /f-stack/dpdk/drivers/net/hns3/ |
| H A D | hns3_rxtx_vec_neon.h | 28 hns3_xmit_fixed_burst_vec(void *__restrict tx_queue, in hns3_xmit_fixed_burst_vec() 29 struct rte_mbuf **__restrict tx_pkts, in hns3_xmit_fixed_burst_vec() 125 hns3_recv_burst_vec(struct hns3_rx_queue *__restrict rxq, in hns3_recv_burst_vec() 126 struct rte_mbuf **__restrict rx_pkts, in hns3_recv_burst_vec()
|
| H A D | hns3_rxtx_vec_sve.c | 76 hns3_recv_burst_vec_sve(struct hns3_rx_queue *__restrict rxq, in hns3_recv_burst_vec_sve() 77 struct rte_mbuf **__restrict rx_pkts, in hns3_recv_burst_vec_sve() 284 hns3_recv_pkts_vec_sve(void *__restrict rx_queue, in hns3_recv_pkts_vec_sve() 285 struct rte_mbuf **__restrict rx_pkts, in hns3_recv_pkts_vec_sve() 421 hns3_xmit_fixed_burst_vec_sve(void *__restrict tx_queue, in hns3_xmit_fixed_burst_vec_sve() 422 struct rte_mbuf **__restrict tx_pkts, in hns3_xmit_fixed_burst_vec_sve()
|
| /f-stack/dpdk/lib/librte_net/ |
| H A D | rte_ether.h | 222 rte_ether_addr_copy(const struct rte_ether_addr *__restrict ea_from, in rte_ether_addr_copy() 223 struct rte_ether_addr *__restrict ea_to) in rte_ether_addr_copy()
|