Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/net/wireless/intersil/hostap/
Dhostap_proc.c51 struct comm_tallies_sums *sums = &local->comm_tallies; in prism2_stats_proc_show() local
53 seq_printf(m, "TxUnicastFrames=%u\n", sums->tx_unicast_frames); in prism2_stats_proc_show()
54 seq_printf(m, "TxMulticastframes=%u\n", sums->tx_multicast_frames); in prism2_stats_proc_show()
55 seq_printf(m, "TxFragments=%u\n", sums->tx_fragments); in prism2_stats_proc_show()
56 seq_printf(m, "TxUnicastOctets=%u\n", sums->tx_unicast_octets); in prism2_stats_proc_show()
57 seq_printf(m, "TxMulticastOctets=%u\n", sums->tx_multicast_octets); in prism2_stats_proc_show()
59 sums->tx_deferred_transmissions); in prism2_stats_proc_show()
60 seq_printf(m, "TxSingleRetryFrames=%u\n", sums->tx_single_retry_frames); in prism2_stats_proc_show()
62 sums->tx_multiple_retry_frames); in prism2_stats_proc_show()
64 sums->tx_retry_limit_exceeded); in prism2_stats_proc_show()
[all …]
/Linux-v5.4/crypto/
Dnhpoly1305.c44 u64 sums[4] = { 0, 0, 0, 0 }; in nh_generic() local
55 sums[0] += (u64)(u32)(m0 + key[ 0]) * (u32)(m2 + key[ 2]); in nh_generic()
56 sums[1] += (u64)(u32)(m0 + key[ 4]) * (u32)(m2 + key[ 6]); in nh_generic()
57 sums[2] += (u64)(u32)(m0 + key[ 8]) * (u32)(m2 + key[10]); in nh_generic()
58 sums[3] += (u64)(u32)(m0 + key[12]) * (u32)(m2 + key[14]); in nh_generic()
59 sums[0] += (u64)(u32)(m1 + key[ 1]) * (u32)(m3 + key[ 3]); in nh_generic()
60 sums[1] += (u64)(u32)(m1 + key[ 5]) * (u32)(m3 + key[ 7]); in nh_generic()
61 sums[2] += (u64)(u32)(m1 + key[ 9]) * (u32)(m3 + key[11]); in nh_generic()
62 sums[3] += (u64)(u32)(m1 + key[13]) * (u32)(m3 + key[15]); in nh_generic()
68 hash[0] = cpu_to_le64(sums[0]); in nh_generic()
[all …]
/Linux-v5.4/fs/btrfs/
Dfile-item.c309 struct btrfs_ordered_sum *sums; in btrfs_lookup_csums_range() local
384 sums = kzalloc(btrfs_ordered_sum_size(fs_info, size), in btrfs_lookup_csums_range()
386 if (!sums) { in btrfs_lookup_csums_range()
391 sums->bytenr = start; in btrfs_lookup_csums_range()
392 sums->len = (int)size; in btrfs_lookup_csums_range()
400 sums->sums, in btrfs_lookup_csums_range()
405 list_add_tail(&sums->list, &tmplist); in btrfs_lookup_csums_range()
412 sums = list_entry(tmplist.next, struct btrfs_ordered_sum, list); in btrfs_lookup_csums_range()
413 list_del(&sums->list); in btrfs_lookup_csums_range()
414 kfree(sums); in btrfs_lookup_csums_range()
[all …]
Dcompression.c86 u8 *cb_sum = cb->sums; in check_compressed_csum()
565 u8 *sums; in btrfs_submit_compressed_read() local
587 sums = cb->sums; in btrfs_submit_compressed_read()
663 sums); in btrfs_submit_compressed_read()
669 sums += csum_size * nr_sectors; in btrfs_submit_compressed_read()
692 ret = btrfs_lookup_bio_sums(inode, comp_bio, sums); in btrfs_submit_compressed_read()
Dcompression.h64 u8 sums[]; member
Dordered-data.h26 u8 sums[]; member
Dtree-log.c806 struct btrfs_ordered_sum *sums; in replay_one_extent() local
807 sums = list_entry(ordered_sums.next, in replay_one_extent()
812 sums->bytenr, in replay_one_extent()
813 sums->len); in replay_one_extent()
816 fs_info->csum_root, sums); in replay_one_extent()
817 list_del(&sums->list); in replay_one_extent()
818 kfree(sums); in replay_one_extent()
4071 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, in copy_items() local
4075 ret = btrfs_csum_file_blocks(trans, log, sums); in copy_items()
4076 list_del(&sums->list); in copy_items()
[all …]
Drelocation.c4612 struct btrfs_ordered_sum *sums; in btrfs_reloc_clone_csums() local
4629 sums = list_entry(list.next, struct btrfs_ordered_sum, list); in btrfs_reloc_clone_csums()
4630 list_del_init(&sums->list); in btrfs_reloc_clone_csums()
4644 new_bytenr = ordered->start + (sums->bytenr - disk_bytenr); in btrfs_reloc_clone_csums()
4645 sums->bytenr = new_bytenr; in btrfs_reloc_clone_csums()
4647 btrfs_add_ordered_sum(ordered, sums); in btrfs_reloc_clone_csums()
Dordered-data.c954 memcpy(sum + index, ordered_sum->sums + i * csum_size, in btrfs_find_ordered_sum()
Dinode.c1292 struct btrfs_ordered_sum *sums; in csum_exist_in_range() local
1301 sums = list_entry(list.next, struct btrfs_ordered_sum, list); in csum_exist_in_range()
1302 list_del(&sums->list); in csum_exist_in_range()
1303 kfree(sums); in csum_exist_in_range()
Dctree.h2805 struct btrfs_ordered_sum *sums);
Dscrub.c2464 memcpy(csum, sum->sums + index * sctx->csum_size, sctx->csum_size); in scrub_find_csum()
/Linux-v5.4/sound/pci/ctxfi/
Dctmixer.c817 sum_c = mixer->sums[SUM_IN_F_C*CHN_NUM+i]; in ct_mixer_recording_select()
857 mixer->sums[i] = sum; in ct_mixer_get_resources()
889 if (NULL != mixer->sums[i]) { in ct_mixer_get_resources()
890 sum_mgr->put_sum(sum_mgr, (struct sum *)mixer->sums[i]); in ct_mixer_get_resources()
891 mixer->sums[i] = NULL; in ct_mixer_get_resources()
915 mixer->sums = kcalloc(NUM_CT_SUMS * CHN_NUM, sizeof(void *), in ct_mixer_get_mem()
917 if (!mixer->sums) { in ct_mixer_get_mem()
945 sum = mixer->sums[k*CHN_NUM]; in ct_mixer_topology_build()
948 sum = mixer->sums[k*CHN_NUM+1]; in ct_mixer_topology_build()
974 sum = mixer->sums[k*CHN_NUM]; in ct_mixer_topology_build()
[all …]
Dctmixer.h45 void **sums; /* sum resources for signal collection */ member
/Linux-v5.4/Documentation/driver-api/mtd/
Dintel-spi.rst61 The SHA1 sums must match. Otherwise do not continue any further!
80 The SHA1 sums should match.
/Linux-v5.4/Documentation/networking/
Dudplite.txt202 sums the contents of the entire first two packets, plus 15 bytes of
/Linux-v5.4/tools/perf/Documentation/
Dperf-stat.txt46 'percore' is a event qualifier that sums up the event counts for both
/Linux-v5.4/Documentation/vm/
Dhugetlbfs_reserv.rst560 comment in hugetlb_acct_memory sums up the interaction between reservations
/Linux-v5.4/Documentation/admin-guide/sysctl/
Dvm.rst376 = (total sums of managed_pages from zone[i+1] to zone[j] on the node)
/Linux-v5.4/Documentation/admin-guide/cgroup-v1/
Dmemory.rst653 per-node page counts including "hierarchical_<counter>" which sums up all
/Linux-v5.4/Documentation/trace/
Dhistogram.rst88 are essentially sums, and the other modifiers don't make sense
1624 continually updated sums associated with that key. A histogram
/Linux-v5.4/Documentation/filesystems/
Dproc.txt544 but their values are the sums of the corresponding values for all mappings of