Home
last modified time | relevance | path

Searched refs:ibytes (Results 1 – 22 of 22) sorted by relevance

/freebsd/sys/crypto/aesni/
H A Daesni_ghash.c271 unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes, in AES_GCM_encrypt() argument
290 if (ibytes == 96/8) { in AES_GCM_encrypt()
319 for (i=0; i < ibytes/16; i++) { in AES_GCM_encrypt()
325 if (ibytes%16) { in AES_GCM_encrypt()
326 for (j=0; j < ibytes%16; j++) in AES_GCM_encrypt()
333 tmp1 = _mm_insert_epi64(tmp1, (uint64_t)ibytes*8, 0); in AES_GCM_encrypt()
532 const unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes, in AES_GCM_decrypt() argument
551 if (ibytes == 96/8) { in AES_GCM_decrypt()
580 for (i=0; i < ibytes/16; i++) { in AES_GCM_decrypt()
586 if (ibytes%16) { in AES_GCM_decrypt()
[all …]
H A Daesni.h103 unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes,
107 const unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes,
/freebsd/crypto/krb5/src/lib/crypto/builtin/
H A Dpbkdf2.c103 unsigned char ibytes[4]; in F() local
110 store_32_be(i, ibytes); in F()
113 memcpy(u_tmp2 + salt->length, ibytes, 4); in F()
/freebsd/sys/dev/ixl/
H A Dixl.h276 #define IXL_SET_IBYTES(vsi, count) (vsi)->ibytes = (count)
454 u64 ibytes; member
H A Dif_ixl.c1816 return (vsi->ibytes); in ixl_if_get_counter()
/freebsd/sys/dev/ixgbe/
H A Dixgbe.h468 u64 ibytes; member
507 #define IXGBE_SET_IBYTES(sc, count) (sc)->ibytes = (count)
H A Dif_ixv.c1208 return (sc->ibytes); in ixv_if_get_counter()
H A Dif_ix.c1377 return (sc->ibytes); in ixgbe_if_get_counter()
/freebsd/usr.bin/netstat/
H A Dif.c431 IFA_STAT(ibytes)); in intpr()
512 IFA_STAT(ibytes), link|network, 0); in intpr()
630 st->ift_ib += IFA_STAT(ibytes); in fill_iftot()
/freebsd/contrib/libpcap/
H A Dpcap-dpdk.c457 stats.ibytes,stats.imissed); in nic_stats_display()
476 uint64_t delta_bit = (pd->curr_stats.ibytes-pd->prev_stats.ibytes)*8; in pcap_dpdk_stats()
/freebsd/sys/netinet6/
H A Dip6_mroute.h197 u_quad_t ibytes; /* Input byte count on mif */ member
H A Dip6_mroute.c567 req->ibytes = mif->m6_bytes_in; in get_mif6_cnt()
/freebsd/tests/sys/net/if_ovpn/
H A Dif_ovpn.sh110 ibytes=$(jexec a netstat -I ovpn0 -n -b | awk 'NR == 2 { print($8); }')
111 echo "$ibytes input bytes"
112 if [ $ibytes -eq 0 ]; then
/freebsd/sys/dev/iavf/
H A Diavf_iflib.h268 u64 ibytes; member
H A Diavf_vc_common.c665 vsi->ibytes = es->rx_bytes; in iavf_update_stats_counters()
H A Dif_iavf_iflib.c1481 return (vsi->ibytes); in iavf_if_get_counter()
/freebsd/sys/netinet/
H A Dip_mroute.h247 u_long ibytes; /* Input byte count on vif */ member
H A Dip_mroute.c629 req->ibytes = vif->v_bytes_in; in get_vif_cnt()
/freebsd/crypto/openssh/
H A Dsshd-session.c794 uint64_t ibytes, obytes; in main() local
1309 ssh_packet_get_bytes(ssh, &ibytes, &obytes); in main()
1311 (unsigned long long)obytes, (unsigned long long)ibytes); in main()
H A Dclientloop.c1458 uint64_t ibytes, obytes; in client_loop() local
1700 ssh_packet_get_bytes(ssh, &ibytes, &obytes); in client_loop()
1702 (unsigned long long)obytes, (unsigned long long)ibytes, total_time); in client_loop()
1705 obytes / total_time, ibytes / total_time); in client_loop()
H A Dpacket.c472 ssh_packet_get_bytes(struct ssh *ssh, uint64_t *ibytes, uint64_t *obytes) in ssh_packet_get_bytes() argument
474 if (ibytes) in ssh_packet_get_bytes()
475 *ibytes = ssh->state->p_read.bytes; in ssh_packet_get_bytes()
/freebsd/sys/fs/ext2fs/
H A Dext2_alloc.c1313 int error, start, len, ifree, ibytes; in ext2_nodealloccg() local
1335 ibytes = fs->e2fs_ipg / 8; in ext2_nodealloccg()
1336 memset(bp->b_data, 0, ibytes - 1); in ext2_nodealloccg()
1337 ext2_fix_bitmap_tail(bp->b_data, ibytes, in ext2_nodealloccg()