| /f-stack/freebsd/kern/ |
| H A D | tty_outq.c | 63 #define TTYOUTQ_INSERT_TAIL(to, tob) do { \ argument 74 #define TTYOUTQ_REMOVE_HEAD(to) do { \ argument 79 #define TTYOUTQ_RECYCLE(to, tob) do { \ argument 87 ttyoutq_flush(struct ttyoutq *to) in ttyoutq_flush() 95 ttyoutq_setsize(struct ttyoutq *to, struct tty *tp, size_t size) in ttyoutq_setsize() 127 ttyoutq_free(struct ttyoutq *to) in ttyoutq_free() 143 ttyoutq_read(struct ttyoutq *to, void *buf, size_t len) in ttyoutq_read() 204 ttyoutq_read_uio(struct ttyoutq *to, struct tty *tp, struct uio *uio) in ttyoutq_read_uio() 280 ttyoutq_write(struct ttyoutq *to, const void *buf, size_t nbytes) in ttyoutq_write() 325 ttyoutq_write_nofrag(struct ttyoutq *to, const void *buf, size_t nbytes) in ttyoutq_write_nofrag()
|
| H A D | subr_early.c | 59 memcpy_early(void *to, const void *from, size_t len) in memcpy_early() 72 memmove_early(void *to, const void *from, size_t len) in memmove_early()
|
| H A D | uipc_mbuf2.c | 432 m_tag_copy_chain(struct mbuf *to, const struct mbuf *from, int how) in m_tag_copy_chain()
|
| H A D | uipc_mbuf.c | 390 m_move_pkthdr(struct mbuf *to, struct mbuf *from) in m_move_pkthdr() 426 m_dup_pkthdr(struct mbuf *to, const struct mbuf *from, int how) in m_dup_pkthdr() 1060 void (*copy)(char *from, caddr_t to, u_int len)) in m_devget()
|
| H A D | kern_event.c | 680 sbintime_t to; /* precalculated timer period, 0 for abs */ member 707 filt_timervalidate(struct knote *kn, sbintime_t *to) in filt_timervalidate() 738 sbintime_t to; in filt_timerattach() local 763 filt_timerstart(struct knote *kn, sbintime_t to) in filt_timerstart() 798 sbintime_t to; in filt_timertouch() local
|
| /f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | vmsystm.h | 50 #define xcopyin(from, to, size) copy_from_user(to, from, size) argument 51 #define xcopyout(from, to, size) copy_to_user(to, from, size) argument 54 copyin(const void *from, void *to, size_t len) in copyin() 64 copyout(const void *from, void *to, size_t len) in copyout() 74 copyinstr(const void *from, void *to, size_t len, size_t *done) in copyinstr()
|
| /f-stack/freebsd/crypto/armv8/ |
| H A D | armv8_crypto_wrap.c | 97 const uint8_t *from, uint8_t *to, const uint8_t iv[static AES_BLOCK_LEN]) in armv8_aes_encrypt_cbc() 158 uint8x16_t *tweak, const uint8_t *from, uint8_t *to, int do_encrypt) in armv8_aes_crypt_xts_block() 177 uint8_t *to, const uint8_t iv[static AES_BLOCK_LEN], int do_encrypt) in armv8_aes_crypt_xts() 208 const void *tweak_schedule, size_t len, const uint8_t *from, uint8_t *to, in armv8_aes_encrypt_xts() 219 const void *tweak_schedule, size_t len, const uint8_t *from, uint8_t *to, in armv8_aes_decrypt_xts() 239 const uint8_t *from, uint8_t *to, in armv8_aes_encrypt_gcm() 325 const uint8_t *from, uint8_t *to, in armv8_aes_decrypt_gcm()
|
| /f-stack/freebsd/opencrypto/ |
| H A D | cryptodev.c | 152 session_op_from_32(const struct session_op32 *from, struct session2_op *to) in session_op_from_32() 175 session_op_to_32(const struct session2_op *from, struct session_op32 *to) in session_op_to_32() 196 crypt_op_from_32(const struct crypt_op32 *from, struct crypt_op *to) in crypt_op_from_32() 210 crypt_op_to_32(const struct crypt_op *from, struct crypt_op32 *to) in crypt_op_to_32() 224 crypt_aead_from_32(const struct crypt_aead32 *from, struct crypt_aead *to) in crypt_aead_from_32() 241 crypt_aead_to_32(const struct crypt_aead *from, struct crypt_aead32 *to) in crypt_aead_to_32() 258 crparam_from_32(const struct crparam32 *from, struct crparam *to) in crparam_from_32() 266 crparam_to_32(const struct crparam *from, struct crparam32 *to) in crparam_to_32() 274 crypt_kop_from_32(const struct crypt_kop32 *from, struct crypt_kop *to) in crypt_kop_from_32() 288 crypt_kop_to_32(const struct crypt_kop *from, struct crypt_kop32 *to) in crypt_kop_to_32() [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | ttyqueue.h | 149 ttyoutq_getsize(struct ttyoutq *to) in ttyoutq_getsize() 155 ttyoutq_getallocatedsize(struct ttyoutq *to) in ttyoutq_getallocatedsize() 162 ttyoutq_bytesleft(struct ttyoutq *to) in ttyoutq_bytesleft() 174 ttyoutq_bytesused(struct ttyoutq *to) in ttyoutq_bytesused()
|
| H A D | systm.h | 364 #define bcopy(from, to, len) kcsan_memmove((to), (from), (len)) argument 368 #define memcpy(to, from, len) kcsan_memcpy((to), (from), (len)) argument 372 #define bcopy(from, to, len) __builtin_memmove((to), (from), (len)) argument 376 #define memcpy(to, from, len) __builtin_memcpy((to), (from), (len)) argument 385 #define bcopy_early(from, to, len) memmove_early((to), (from), (len)) argument
|
| /f-stack/freebsd/crypto/aesni/ |
| H A D | aesni_wrap.c | 58 const uint8_t *from, uint8_t *to, const uint8_t iv[static AES_BLOCK_LEN]) in aesni_encrypt_cbc() 111 const uint8_t *from, uint8_t *to) in aesni_encrypt_ecb() 207 const uint8_t *from, uint8_t *to, const uint8_t iv[static AES_BLOCK_LEN]) in aesni_encrypt_icm() 309 const uint8_t *from, uint8_t *to, int do_encrypt) in aesni_crypt_xts_block() 327 const uint8_t *from, uint8_t *to, int do_encrypt) in aesni_crypt_xts_block8() 381 uint8_t *to, const uint8_t iv[static AES_BLOCK_LEN], int do_encrypt) in aesni_crypt_xts() 420 const void *tweak_schedule, size_t len, const uint8_t *from, uint8_t *to, in aesni_encrypt_xts() 430 const void *tweak_schedule, size_t len, const uint8_t *from, uint8_t *to, in aesni_decrypt_xts()
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_misc.c | 78 ddi_copyin(const void *from, void *to, size_t len, int flags) in ddi_copyin() 90 ddi_copyout(const void *from, void *to, size_t len, int flags) in ddi_copyout()
|
| /f-stack/freebsd/libkern/ |
| H A D | iconv.c | 169 iconv_lookupcs(const char *to, const char *from, struct iconv_cspair **cspp) in iconv_lookupcs() 185 iconv_register_cspair(const char *to, const char *from, in iconv_register_cspair() 240 iconv_open(const char *to, const char *from, void **handle) in iconv_open() 391 iconv_add(const char *converter, const char *to, const char *from) in iconv_add()
|
| /f-stack/freebsd/netinet/ |
| H A D | tcp_output.c | 162 struct tcpopt *to, uint32_t len, int tso) in hhook_run_tcp_est_out() 218 struct tcpopt to; in tcp_output() local 1747 tcp_addoptions(struct tcpopt *to, u_char *optp) in tcp_addoptions()
|
| H A D | sctp_syscalls.c | 228 struct sockaddr *to = NULL; local 337 struct sockaddr *to = NULL; local
|
| H A D | tcp_syncache.c | 1140 syncache_expand(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, in syncache_expand() 1445 syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, in syncache_add() 1870 struct tcpopt to; in syncache_respond() local 2294 struct syncache *sc, struct tcphdr *th, struct tcpopt *to, in syncookie_lookup() 2388 struct syncache *sc, struct tcphdr *th, struct tcpopt *to, in syncookie_cmp()
|
| H A D | tcp_input.c | 294 hhook_run_tcp_est_in(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to) in hhook_run_tcp_est_in() 640 struct tcpopt to; /* options in this segment */ in tcp_input() local 1509 struct tcpopt to; in tcp_do_segment() local 3416 tcp_dooptions(struct tcpopt *to, u_char *cp, int cnt, int flags) in tcp_dooptions()
|
| H A D | tcp_timewait.c | 380 tcp_twcheck(struct inpcb *inp, struct tcpopt *to, struct tcphdr *th, in tcp_twcheck() 560 struct tcpopt to; in tcp_twrespond() local
|
| H A D | toecore.c | 348 toe_syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, in toe_syncache_add() 359 toe_syncache_expand(struct in_conninfo *inc, struct tcpopt *to, in toe_syncache_expand()
|
| /f-stack/app/redis-5.0.5/tests/cluster/ |
| H A D | cluster.tcl | 121 proc set_cluster_node_timeout {to} { argument
|
| /f-stack/freebsd/netinet/khelp/ |
| H A D | h_ertt.c | 203 struct tcpopt *to; in ertt_packet_measurement_hook() local 438 struct tcpopt *to; in ertt_add_tx_segment_info_hook() local
|
| /f-stack/freebsd/netinet/tcp_stacks/ |
| H A D | bbr.c | 572 uint32_t thresh, exp, to, srtt, time_since_sent, tstmp_touse; in bbr_timer_start() local 2450 uint32_t thresh, uint32_t to) in bbr_log_timer_var() 7056 struct tcpopt *to, struct bbr_sendmap **prsm, uint32_t cts) in bbr_proc_sack_blk() 7350 bbr_log_syn(struct tcpcb *tp, struct tcpopt *to) in bbr_log_syn() 7390 bbr_log_ack(struct tcpcb *tp, struct tcpopt *to, struct tcphdr *th, in bbr_log_ack() 7789 struct tcpcb *tp, struct tcpopt *to, in bbr_process_ack() 8493 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in bbr_do_fastnewdata() 8643 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in bbr_fastack() 9048 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in bbr_do_syn_recv() 11400 struct tcpopt to; in bbr_do_segment_nounlock() local [all …]
|
| H A D | rack.c | 4438 uint32_t thresh, exp, to, srtt, time_since_sent, tstmp_touse; in rack_timer_start() local 6065 rack_log_output(struct tcpcb *tp, struct tcpopt *to, int32_t len, in rack_log_output() 7456 rack_log_ack(struct tcpcb *tp, struct tcpopt *to, struct tcphdr *th) in rack_log_ack() 8204 struct tcpcb *tp, struct tcpopt *to, in rack_process_ack() 8811 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in rack_do_fastnewdata() 8955 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in rack_fastack() 9164 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in rack_do_syn_sent() 9368 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in rack_do_syn_recv() 9568 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, in rack_do_established() 10757 struct tcpopt to; in rack_do_segment_nounlock() local [all …]
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_file.c | 660 ngx_ext_rename_file(ngx_str_t *src, ngx_str_t *to, ngx_ext_rename_file_t *ext) in ngx_ext_rename_file() 795 ngx_copy_file(u_char *from, u_char *to, ngx_copy_file_t *cf) in ngx_copy_file()
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-generic.c | 533 ddi_copyin(const void *from, void *to, size_t len, int flags) in ddi_copyin() 546 ddi_copyout(const void *from, void *to, size_t len, int flags) in ddi_copyout()
|