Home
last modified time | relevance | path

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

12

/OK3568_Linux_fs/kernel/drivers/net/wireless/intersil/hostap/
H A 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 …]
/OK3568_Linux_fs/kernel/crypto/
H A Dnhpoly1305.c45 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 …]
/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dfile-item.c402 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 …]
H A Dtree-log.c801 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()
3950 struct btrfs_ordered_sum *sums) in log_csums() argument
3952 const u64 lock_end = sums->bytenr + sums->len - 1; in log_csums()
3962 return btrfs_csum_file_blocks(trans, log_root, sums); in log_csums()
[all …]
H A Dcompression.c156 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()
H A Dordered-data.h26 u8 sums[]; member
H A Dcompression.h66 u8 sums[]; member
H A Drelocation.c3907 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()
/OK3568_Linux_fs/kernel/sound/pci/ctxfi/
H A 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 …]
H A Dctmixer.h45 void **sums; /* sum resources for signal collection */ member
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/cartesian/
H A Dcentroid_bashein_detmer.hpp151 class sums class in boost::geometry::strategy::centroid::bashein_detmer
160 inline sums() in sums() function in boost::geometry::strategy::centroid::bashein_detmer::sums
169 typedef sums state_type;
172 PointOfSegment const& p2, sums& state) in apply()
197 static inline bool result(sums const& state, Point& centroid) in result()
/OK3568_Linux_fs/yocto/poky/meta/lib/
H A Dbuildstats.py95 sums = [ a - b for a, b in zip(diskdata, self.diskstats_data) ]
96 readTput = sums[0] / 2.0 * 100.0 / interval
97 writeTput = sums[1] / 2.0 * 100.0 / interval
98 util = float( sums[2] ) / 10 / interval
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dsstate-cache-management.sh316 local sums
335 sums=`find $stamps -maxdepth 3 -name "*.do_$i.*" \
339 all_sums="$all_sums $sums"
/OK3568_Linux_fs/buildroot/package/cog/
H A Dcog.hash1 # From https://wpewebkit.org/releases/cog-0.10.1.tar.xz.sums
/OK3568_Linux_fs/buildroot/package/libwpe/
H A Dlibwpe.hash1 # From https://wpewebkit.org/releases/libwpe-1.10.1.tar.xz.sums
/OK3568_Linux_fs/buildroot/package/wpebackend-fdo/
H A Dwpebackend-fdo.hash1 # From https://wpewebkit.org/releases/wpebackend-fdo-1.10.0.tar.xz.sums
/OK3568_Linux_fs/buildroot/package/putty/
H A Dputty.hash1 # Hashes from: http://the.earth.li/~sgtatham/putty/0.76/{md5,sha1,sha256,sha512}sums
/OK3568_Linux_fs/buildroot/package/wpewebkit/
H A Dwpewebkit.hash1 # From https://wpewebkit.org/releases/wpewebkit-2.32.4.tar.xz.sums
/OK3568_Linux_fs/buildroot/package/webkitgtk/
H A Dwebkitgtk.hash1 # From https://webkitgtk.org/releases/webkitgtk-2.32.4.tar.xz.sums
/OK3568_Linux_fs/kernel/Documentation/driver-api/mtd/
H A Dintel-spi.rst61 The SHA1 sums must match. Otherwise do not continue any further!
80 The SHA1 sums should match.
/OK3568_Linux_fs/buildroot/package/rhash/
H A DConfig.in6 for computing a wide variety of hash sums, such as CRC32,
/OK3568_Linux_fs/external/mpp/test/
H A Dmpi_rc2_test.c278 int sums[2][4] ) in ssim_4x4x2_core()
299 sums[z][0] = s1; in ssim_4x4x2_core()
300 sums[z][1] = s2; in ssim_4x4x2_core()
301 sums[z][2] = ss; in ssim_4x4x2_core()
302 sums[z][3] = s12; in ssim_4x4x2_core()
/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/
H A Dparsing.py483 sums = [ a - b for a, b in zip(sample1.diskdata, sample2.diskdata) ]
484 readTput = sums[0] / 2.0 * 100.0 / interval
485 writeTput = sums[1] / 2.0 * 100.0 / interval
486 util = float( sums[2] ) / 10 / interval
/OK3568_Linux_fs/kernel/tools/perf/Documentation/
H A Dperf-stat.txt50 '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
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dudplite.rst209 sums the contents of the entire first two packets, plus 15 bytes of

12