/kernel/linux/linux-5.10/drivers/net/wireless/intersil/hostap/ |
D | hostap_proc.c | 51 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 …]
|
/kernel/linux/linux-5.10/crypto/ |
D | nhpoly1305.c | 45 u64 sums[4] = { 0, 0, 0, 0 }; in nh_generic() local 56 sums[0] += (u64)(u32)(m0 + key[ 0]) * (u32)(m2 + key[ 2]); in nh_generic() 57 sums[1] += (u64)(u32)(m0 + key[ 4]) * (u32)(m2 + key[ 6]); in nh_generic() 58 sums[2] += (u64)(u32)(m0 + key[ 8]) * (u32)(m2 + key[10]); in nh_generic() 59 sums[3] += (u64)(u32)(m0 + key[12]) * (u32)(m2 + key[14]); in nh_generic() 60 sums[0] += (u64)(u32)(m1 + key[ 1]) * (u32)(m3 + key[ 3]); in nh_generic() 61 sums[1] += (u64)(u32)(m1 + key[ 5]) * (u32)(m3 + key[ 7]); in nh_generic() 62 sums[2] += (u64)(u32)(m1 + key[ 9]) * (u32)(m3 + key[11]); in nh_generic() 63 sums[3] += (u64)(u32)(m1 + key[13]) * (u32)(m3 + key[15]); in nh_generic() 69 hash[0] = cpu_to_le64(sums[0]); in nh_generic() [all …]
|
/kernel/linux/linux-5.10/fs/btrfs/ |
D | file-item.c | 402 struct btrfs_ordered_sum *sums; in btrfs_lookup_csums_range() local 477 sums = kzalloc(btrfs_ordered_sum_size(fs_info, size), in btrfs_lookup_csums_range() 479 if (!sums) { in btrfs_lookup_csums_range() 484 sums->bytenr = start; in btrfs_lookup_csums_range() 485 sums->len = (int)size; in btrfs_lookup_csums_range() 493 sums->sums, in btrfs_lookup_csums_range() 498 list_add_tail(&sums->list, &tmplist); in btrfs_lookup_csums_range() 505 sums = list_entry(tmplist.next, struct btrfs_ordered_sum, list); in btrfs_lookup_csums_range() 506 list_del(&sums->list); in btrfs_lookup_csums_range() 507 kfree(sums); in btrfs_lookup_csums_range() [all …]
|
D | tree-log.c | 801 struct btrfs_ordered_sum *sums; in replay_one_extent() local 802 sums = list_entry(ordered_sums.next, in replay_one_extent() 808 sums->bytenr, in replay_one_extent() 809 sums->len); in replay_one_extent() 812 fs_info->csum_root, sums); in replay_one_extent() 813 list_del(&sums->list); in replay_one_extent() 814 kfree(sums); in replay_one_extent() 3930 struct btrfs_ordered_sum *sums) in log_csums() argument 3932 const u64 lock_end = sums->bytenr + sums->len - 1; in log_csums() 3942 return btrfs_csum_file_blocks(trans, log_root, sums); in log_csums() [all …]
|
D | compression.c | 156 u8 *cb_sum = cb->sums; in check_compressed_csum() 637 u8 *sums; in btrfs_submit_compressed_read() local 659 sums = cb->sums; in btrfs_submit_compressed_read() 732 (u64)-1, sums); in btrfs_submit_compressed_read() 738 sums += csum_size * nr_sectors; in btrfs_submit_compressed_read() 760 ret = btrfs_lookup_bio_sums(inode, comp_bio, (u64)-1, sums); in btrfs_submit_compressed_read()
|
D | ordered-data.h | 26 u8 sums[]; member
|
D | compression.h | 66 u8 sums[]; member
|
D | relocation.c | 3907 struct btrfs_ordered_sum *sums; in btrfs_reloc_clone_csums() local 3924 sums = list_entry(list.next, struct btrfs_ordered_sum, list); in btrfs_reloc_clone_csums() 3925 list_del_init(&sums->list); in btrfs_reloc_clone_csums() 3939 new_bytenr = ordered->disk_bytenr + sums->bytenr - disk_bytenr; in btrfs_reloc_clone_csums() 3940 sums->bytenr = new_bytenr; in btrfs_reloc_clone_csums() 3942 btrfs_add_ordered_sum(ordered, sums); in btrfs_reloc_clone_csums()
|
D | ordered-data.c | 887 memcpy(sum + index, ordered_sum->sums + i * csum_size, in btrfs_find_ordered_sum()
|
D | inode.c | 1356 struct btrfs_ordered_sum *sums; in csum_exist_in_range() local 1365 sums = list_entry(list.next, struct btrfs_ordered_sum, list); in csum_exist_in_range() 1366 list_del(&sums->list); in csum_exist_in_range() 1367 kfree(sums); in csum_exist_in_range()
|
D | ctree.h | 2964 struct btrfs_ordered_sum *sums);
|
D | scrub.c | 2393 memcpy(csum, sum->sums + index * sctx->csum_size, sctx->csum_size); in scrub_find_csum()
|
/kernel/linux/linux-5.10/sound/pci/ctxfi/ |
D | ctmixer.c | 817 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 …]
|
D | ctmixer.h | 45 void **sums; /* sum resources for signal collection */ member
|
/kernel/linux/linux-5.10/Documentation/driver-api/mtd/ |
D | intel-spi.rst | 61 The SHA1 sums must match. Otherwise do not continue any further! 80 The SHA1 sums should match.
|
/kernel/linux/linux-5.10/tools/perf/Documentation/ |
D | perf-stat.txt | 50 'percore' is a event qualifier that sums up the event counts for both 428 This option with event modifier "percore" enabled also sums up the event
|
/kernel/linux/linux-5.10/Documentation/networking/ |
D | udplite.rst | 209 sums the contents of the entire first two packets, plus 15 bytes of
|
/kernel/linux/linux-5.10/Documentation/driver-api/media/drivers/ |
D | zoran.rst | 507 This gives us a data rate of 165 bits per block, which, times 3168, sums up
|
/kernel/linux/linux-5.10/Documentation/vm/ |
D | hugetlbfs_reserv.rst | 560 comment in hugetlb_acct_memory sums up the interaction between reservations
|
/kernel/linux/linux-5.10/Documentation/admin-guide/sysctl/ |
D | vm.rst | 388 = (total sums of managed_pages from zone[i+1] to zone[j] on the node)
|
/kernel/linux/linux-5.10/Documentation/admin-guide/cgroup-v1/ |
D | memory.rst | 648 per-node page counts including "hierarchical_<counter>" which sums up all
|
/kernel/linux/linux-5.10/Documentation/trace/ |
D | histogram.rst | 88 are essentially sums, and the other modifiers don't make sense 1624 continually updated sums associated with that key. A histogram
|
D | histogram-design.rst | 164 in the histogram, and this is where the continually aggregated sums | |
|
/kernel/linux/linux-5.10/Documentation/filesystems/ |
D | proc.rst | 575 but their values are the sums of the corresponding values for all mappings of
|