| /linux/drivers/crypto/ |
| A D | omap-crypto.c | 33 while (*sg && total) { in omap_crypto_copy_sg_lists() 36 if (total < len) in omap_crypto_copy_sg_lists() 37 len = total; in omap_crypto_copy_sg_lists() 40 total -= len; in omap_crypto_copy_sg_lists() 42 if (total <= 0) in omap_crypto_copy_sg_lists() 62 new_len = ALIGN(total, bs); in omap_crypto_copy_sgs() 73 scatterwalk_map_and_copy(buf, *sg, 0, total, 0); in omap_crypto_copy_sgs() 75 memset(buf + total, 0, new_len - total); in omap_crypto_copy_sgs() 94 if (!IS_ALIGNED(total, bs)) in omap_crypto_check_sg() 112 if (len >= total) in omap_crypto_check_sg() [all …]
|
| /linux/tools/testing/selftests/bpf/map_tests/ |
| A D | htab_map_batch_ops.c | 145 total = 0; in __test_map_lookup_and_delete_batch() 156 total * value_size, in __test_map_lookup_and_delete_batch() 171 total += count; in __test_map_lookup_and_delete_batch() 183 total = 0; in __test_map_lookup_and_delete_batch() 189 keys + total, in __test_map_lookup_and_delete_batch() 193 total += count; in __test_map_lookup_and_delete_batch() 211 total = 0; in __test_map_lookup_and_delete_batch() 216 total ? &batch : NULL, in __test_map_lookup_and_delete_batch() 217 &batch, keys + total, in __test_map_lookup_and_delete_batch() 219 total * value_size, in __test_map_lookup_and_delete_batch() [all …]
|
| A D | lpm_trie_map_batch_ops.c | 71 __u32 step, count, total, total_success; in test_lpm_trie_map_batch_ops() local 99 total = 0; in test_lpm_trie_map_batch_ops() 106 total ? &batch : NULL, &batch, in test_lpm_trie_map_batch_ops() 107 keys + total, values + total, &count, &opts); in test_lpm_trie_map_batch_ops() 112 total += count; in test_lpm_trie_map_batch_ops() 117 CHECK(total != max_entries, "lookup with steps", in test_lpm_trie_map_batch_ops() 122 total = 0; in test_lpm_trie_map_batch_ops() 124 while (total < max_entries) { in test_lpm_trie_map_batch_ops() 125 if (max_entries - total < step) in test_lpm_trie_map_batch_ops() 126 count = max_entries - total; in test_lpm_trie_map_batch_ops() [all …]
|
| A D | array_map_batch_ops.c | 73 __u32 count, total, total_success; in __test_map_lookup_and_update_batch() local 106 total = 0; in __test_map_lookup_and_update_batch() 113 total ? &batch : NULL, in __test_map_lookup_and_update_batch() 114 &batch, keys + total, in __test_map_lookup_and_update_batch() 115 values + total * value_size, in __test_map_lookup_and_update_batch() 121 total += count; in __test_map_lookup_and_update_batch() 127 CHECK(total != max_entries, "lookup with steps", in __test_map_lookup_and_update_batch() 128 "total = %u, max_entries = %u\n", total, max_entries); in __test_map_lookup_and_update_batch()
|
| /linux/drivers/gpu/drm/xe/ |
| A D | xe_guc_id_mgr.c | 50 weight, idm->total); in __fini_idm() 57 idm->total = 0; in __fini_idm() 81 idm_assert(idm, !idm->total); in xe_guc_id_mgr_init() 94 idm->total = limit; in xe_guc_id_mgr_init() 101 idm->total, str_plural(idm->total)); in xe_guc_id_mgr_init() 106 unsigned int total, in find_last_zero_area() argument 109 unsigned int found = total; in find_last_zero_area() 129 if (!idm->total) in idm_reserve_chunk_locked() 137 if (idm->used + count + retain > idm->total) in idm_reserve_chunk_locked() 150 if (id >= idm->total) in idm_reserve_chunk_locked() [all …]
|
| /linux/drivers/gpu/drm/xe/tests/ |
| A D | xe_guc_id_mgr_test.c | 48 KUNIT_EXPECT_EQ(test, idm->total, GUC_ID_MAX); in init_fini() 51 KUNIT_EXPECT_EQ(test, idm->total, 0); in init_fini() 63 for (n = 0; n < idm->total; n++) { in check_used() 69 KUNIT_EXPECT_EQ(test, idm->used, idm->total); in check_used() 85 for (n = 0; n < idm->total - 1; n++) { in check_quota() 87 KUNIT_EXPECT_EQ(test, idm_reserve_chunk_locked(idm, 1, idm->total), -EDQUOT); in check_quota() 93 KUNIT_EXPECT_EQ(test, idm->used, idm->total); in check_quota() 94 idm_release_chunk_locked(idm, 0, idm->total); in check_quota() 109 for (n = 0; n < idm->total; n++) in check_all() 111 KUNIT_EXPECT_EQ(test, idm->used, idm->total); in check_all() [all …]
|
| /linux/tools/perf/util/ |
| A D | branch.c | 114 u64 total = 0; in branch_type_stat_display() local 118 total += st->counts[i]; in branch_type_stat_display() 120 if (total == 0) in branch_type_stat_display() 130 100.0 * (double)st->cond_fwd / (double)total); in branch_type_stat_display() 136 100.0 * (double)st->cond_bwd / (double)total); in branch_type_stat_display() 156 (double)st->counts[i] / (double)total); in branch_type_stat_display() 164 (double)st->new_counts[i] / (double)total); in branch_type_stat_display() 177 u64 total = 0; in branch_type_str() local 180 total += st->counts[i]; in branch_type_str() 183 total += st->new_counts[i]; in branch_type_str() [all …]
|
| /linux/net/netfilter/ |
| A D | nft_counter.c | 110 struct nft_counter_tot *total) in nft_counter_reset() argument 128 struct nft_counter_tot *total) in nft_counter_fetch() argument 135 memset(total, 0, sizeof(*total)); in nft_counter_fetch() 146 total->bytes += bytes; in nft_counter_fetch() 147 total->packets += packets; in nft_counter_fetch() 155 struct nft_counter_tot total; in nft_counter_do_dump() local 157 nft_counter_fetch(priv, &total); in nft_counter_do_dump() 166 nft_counter_reset(priv, &total); in nft_counter_do_dump() 244 struct nft_counter_tot total; in nft_counter_clone() local 246 nft_counter_fetch(priv, &total); in nft_counter_clone() [all …]
|
| /linux/Documentation/translations/zh_CN/accounting/ |
| A D | delay-accounting.rst | 92 CPU count real total virtual total delay total delay average 94 IO count delay total delay average 96 SWAP count delay total delay average 98 RECLAIM count delay total delay average 100 THRASHING count delay total delay average 102 COMPACT count delay total delay average 104 WPCOPY count delay total delay average
|
| /linux/drivers/input/rmi4/ |
| A D | rmi_f55.c | 63 int i, total; in rmi_f55_detect() local 77 total = 0; in rmi_f55_detect() 80 total++; in rmi_f55_detect() 82 f55->cfg_num_rx_electrodes = total; in rmi_f55_detect() 83 drv_data->num_rx_electrodes = total; in rmi_f55_detect() 90 total = 0; in rmi_f55_detect() 93 total++; in rmi_f55_detect() 95 f55->cfg_num_tx_electrodes = total; in rmi_f55_detect() 96 drv_data->num_tx_electrodes = total; in rmi_f55_detect()
|
| /linux/tools/perf/ui/ |
| A D | progress.h | 11 u64 curr, next, step, total; member 15 void __ui_progress__init(struct ui_progress *p, u64 total, 18 #define ui_progress__init(p, total, title) \ argument 19 __ui_progress__init(p, total, title, false) 21 #define ui_progress__init_size(p, total, title) \ argument 22 __ui_progress__init(p, total, title, true)
|
| /linux/drivers/media/platform/mediatek/vcodec/common/ |
| A D | mtk_vcodec_dbgfs.c | 15 int *used, int total) in mtk_vdec_dbgfs_get_format_type() argument 21 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_format_type() 25 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_format_type() 29 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_format_type() 33 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_format_type() 41 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_format_type() 45 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_format_type() 49 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_format_type() 60 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_help() 64 curr_len = snprintf(buf + *used, total - *used, in mtk_vdec_dbgfs_get_help() [all …]
|
| /linux/drivers/md/bcache/ |
| A D | stats.c | 97 int ret = kobject_add(&acc->total.kobj, parent, in bch_cache_accounting_add_kobjs() 110 acc->total.cache_hits = 0; in bch_cache_accounting_clear() 111 acc->total.cache_misses = 0; in bch_cache_accounting_clear() 112 acc->total.cache_bypass_hits = 0; in bch_cache_accounting_clear() 113 acc->total.cache_bypass_misses = 0; in bch_cache_accounting_clear() 114 acc->total.cache_miss_collisions = 0; in bch_cache_accounting_clear() 115 acc->total.sectors_bypassed = 0; in bch_cache_accounting_clear() 120 kobject_put(&acc->total.kobj); in bch_cache_accounting_destroy() 160 acc->total.name += t; \ in scale_accounting() 170 scale_stats(&acc->total, 0); in scale_accounting() [all …]
|
| /linux/Documentation/ABI/testing/ |
| A D | debugfs-pfo-nx-crypto | 14 A u32 providing a total count of errors since the driver was loaded. The 29 The total number of bytes encrypted using AES in any of the driver's 33 The total number of AES operations submitted to the hardware. 36 The total number of bytes hashed by the hardware using SHA-256. 39 The total number of SHA-256 operations submitted to the hardware. 42 The total number of bytes hashed by the hardware using SHA-512. 45 The total number of SHA-512 operations submitted to the hardware.
|
| /linux/fs/ceph/ |
| A D | metric.c | 70 cap->total = cpu_to_le64(nr_caps); in ceph_mdsc_send_metrics() 83 read->count = cpu_to_le64(m->metric[METRIC_READ].total); in ceph_mdsc_send_metrics() 96 write->count = cpu_to_le64(m->metric[METRIC_WRITE].total); in ceph_mdsc_send_metrics() 132 files->total = cpu_to_le64(sum); in ceph_mdsc_send_metrics() 142 icaps->total = cpu_to_le64(sum); in ceph_mdsc_send_metrics() 152 inodes->total = cpu_to_le64(sum); in ceph_mdsc_send_metrics() 268 metric->total = 0; in ceph_metric_init() 333 if (unlikely(total == 1)) { in __update_mean_and_stdev() 337 avg = *lavg + div64_s64(lat - *lavg, total); in __update_mean_and_stdev() 348 ktime_t total; in ceph_update_metrics() local [all …]
|
| A D | debugfs.c | 130 #define CEPH_LAT_METRIC_SHOW(name, total, avg, min, max, sq) { \ argument 135 _total = total - 1; \ 140 name, total, _avg, _min, _max, _st); \ 146 name, total, avg, _min, max, sum); \ 178 s64 total, avg, min, max, sq; in metrics_latency_show() local 187 total = m->total; in metrics_latency_show() 204 s64 total; in metrics_size_show() local 217 total = m->total; in metrics_size_show() 219 avg = total > 0 ? DIV64_U64_ROUND_CLOSEST(sum, total) : 0; in metrics_size_show() 272 int total, avail, used, reserved, min, i; in caps_show() local [all …]
|
| /linux/tools/testing/selftests/net/ |
| A D | tcp_mmap.c | 242 total += zc.length; in child_thread() 247 FILE_SZ - total)); in child_thread() 253 total += lu; in child_thread() 263 FILE_SZ - total)); in child_thread() 272 total += lu; in child_thread() 298 if (total > 1024*1024) { in child_thread() 305 total / (1024.0 * 1024.0), in child_thread() 306 100.0*total_mmap/total, in child_thread() 450 uint64_t total = 0; in main() local 590 while (total < FILE_SZ) { in main() [all …]
|
| /linux/tools/testing/selftests/net/forwarding/ |
| A D | sch_ets_tests.sh | 43 local total=$1; shift 48 if ((! total)); then 54 local ratio=$(echo "scale=2; 100 * $d / $total" | bc -l) 86 local total 105 total=$(echo ${d[@]} | sed 's/ /+/g' | bc) 110 notraf_eval "band $stream" ${d[$i]} $total 112 strict_eval "band $stream" ${d[$i]} $total
|
| /linux/scripts/ |
| A D | verify_builtin_ranges.awk | 37 total = 0; 81 total = 0; 169 FNR == 1 && ARGIND == 5 && total > 0 { 352 total++; 360 if (total) { 362 printf " Correct matches: %6d (%d%% of total)\n", matches, 100 * matches / total; 364 printf " Mismatches: %6d (%d%% of total)\n", mismatches, 100 * mismatches / total; 365 printf " Missing: %6d (%d%% of total)\n", missing, 100 * missing / total;
|
| /linux/samples/bpf/ |
| A D | xdp_sample_user.c | 678 pps = calc_pps(&rec->total, &prev->total, t); in stats_get_rx_cnt() 680 err = calc_errs_pps(&rec->total, &prev->total, t); in stats_get_rx_cnt() 705 pps = calc_pps(&rec->total, &prev->total, t); in stats_get_cpumap_enqueue() 796 pps = calc_pps(&rec->total, &prev->total, t); in stats_get_cpumap_kthread() 798 err = calc_errs_pps(&rec->total, &prev->total, t); in stats_get_cpumap_kthread() 848 pps = calc_pps(&rec->total, &prev->total, t); in stats_get_redirect_cnt() 983 pps = calc_pps(&rec->total, &prev->total, t); in stats_get_devmap_xmit() 1045 pps = calc_pps(&r->total, &p->total, t); in stats_get_devmap_xmit_multi() 1046 drop = calc_drop_pps(&r->total, &p->total, t); in stats_get_devmap_xmit_multi() 1047 info = calc_info_pps(&r->total, &p->total, t); in stats_get_devmap_xmit_multi() [all …]
|
| /linux/lib/zstd/compress/ |
| A D | fse_compress.c | 175 { unsigned total = 0; in FSE_buildCTable_wksp() local 188 assert(total <= INT_MAX); in FSE_buildCTable_wksp() 190 total ++; in FSE_buildCTable_wksp() 395 U32 const lowThreshold = (U32)(total >> tableLog); in FSE_normalizeM2() 396 U32 lowOne = (U32)((total * 3) >> (tableLog + 1)); in FSE_normalizeM2() 406 total -= count[s]; in FSE_normalizeM2() 412 total -= count[s]; in FSE_normalizeM2() 423 if ((total / ToDistribute) > lowOne) { in FSE_normalizeM2() 430 total -= count[s]; in FSE_normalizeM2() 447 if (total == 0) { in FSE_normalizeM2() [all …]
|
| /linux/include/linux/ |
| A D | bpf_mprog.h | 196 int total = entry->parent->count; in bpf_mprog_total() local 198 WARN_ON_ONCE(total > bpf_mprog_max()); in bpf_mprog_total() 199 return total; in bpf_mprog_total() 277 int total = bpf_mprog_total(entry); in bpf_mprog_entry_grow() local 281 (total - idx) * sizeof(struct bpf_mprog_fp)); in bpf_mprog_entry_grow() 285 (total - idx) * sizeof(struct bpf_mprog_cp)); in bpf_mprog_entry_grow() 293 int total = ARRAY_SIZE(entry->fp_items); in bpf_mprog_entry_shrink() local 297 (total - idx - 1) * sizeof(struct bpf_mprog_fp)); in bpf_mprog_entry_shrink() 301 (total - idx - 1) * sizeof(struct bpf_mprog_cp)); in bpf_mprog_entry_shrink()
|
| /linux/tools/testing/selftests/net/mptcp/ |
| A D | mptcp_inq.c | 219 if ((size_t)queued > total) in wait_for_ack() 237 size_t len, i, total, sent; in connect_one_server() local 272 total = rand() % (16 * 1024 * 1024); in connect_one_server() 273 total += (1 * 1024 * 1024); in connect_one_server() 274 sent = total; in connect_one_server() 276 ret = write(unixfd, &total, sizeof(total)); in connect_one_server() 277 assert(ret == (ssize_t)sizeof(total)); in connect_one_server() 281 while (total > 0) { in connect_one_server() 282 if (total > sizeof(buf)) in connect_one_server() 285 len = total; in connect_one_server() [all …]
|
| /linux/fs/qnx4/ |
| A D | bitmap.c | 24 int total = 0; in qnx4_count_free_blocks() local 30 while (total < size) { in qnx4_count_free_blocks() 31 int bytes = min(size - total, QNX4_BLOCK_SIZE); in qnx4_count_free_blocks() 40 total += bytes; in qnx4_count_free_blocks()
|
| /linux/lib/842/ |
| A D | 842_decompress.c | 175 if (total > fsize) { in __do_index() 177 u64 section = round_down(total, fsize); in __do_index() 179 u64 pos = total - section; in __do_index() 190 if (offset + size > total) { in __do_index() 192 (unsigned long)offset, (unsigned long)total); in __do_index() 202 (unsigned long)total, in __do_index() 282 u64 op, rep, tmp, bytes, total; in sw842_decompress() local 292 total = p.olen; in sw842_decompress() 385 if (crc != (u64)crc32_be(0, out, total - p.olen)) { in sw842_decompress() 390 if (unlikely((total - p.olen) > UINT_MAX)) in sw842_decompress() [all …]
|