| /linux-6.15/security/apparmor/include/ |
| H A D | perms.h | 123 if (!accum->tag) in aa_perms_accum_raw() 138 accum->allow &= addend->allow & ~accum->deny; in aa_perms_accum() 139 accum->audit |= addend->audit & accum->allow; in aa_perms_accum() 140 accum->quiet &= addend->quiet & ~accum->allow; in aa_perms_accum() 141 accum->kill |= addend->kill & ~accum->allow; in aa_perms_accum() 142 accum->complain |= addend->complain & ~accum->allow & ~accum->deny; in aa_perms_accum() 143 accum->cond |= addend->cond & ~accum->allow & ~accum->deny; in aa_perms_accum() 144 accum->hide &= addend->hide & ~accum->allow; in aa_perms_accum() 145 accum->prompt |= addend->prompt & ~accum->allow & ~accum->deny; in aa_perms_accum() 146 accum->subtree &= addend->subtree & ~accum->deny; in aa_perms_accum() [all …]
|
| /linux-6.15/arch/x86/math-emu/ |
| H A D | poly_tan.c | 73 accum.lsw = 0; in poly_tan() 79 XSIG_LL(accum) <<= 1; in poly_tan() 82 XSIG_LL(accum) = 0x921fb54442d18469LL - XSIG_LL(accum); in poly_tan() 92 argSignif.lsw = accum.lsw; in poly_tan() 104 XSIG_LL(accum)++; /* round up */ in poly_tan() 108 XSIG_LL(argSq) = XSIG_LL(accum); in poly_tan() 109 argSq.lsw = accum.lsw; in poly_tan() 148 accum.lsw = 0; in poly_tan() 157 mul64_Xsig(&accum, &twothirds); in poly_tan() 203 div_Xsig(&accumulatoro, &accum, &accum); in poly_tan() [all …]
|
| /linux-6.15/rust/pin-init/src/ |
| H A D | macros.rs | 585 @accum(), 605 @accum($($accum:tt)*), 645 @accum($($accum:tt)*), 680 @accum($($accum:tt)*), 715 @accum($($accum:tt)*), 733 @accum($($accum)*), 753 @accum($($accum:tt)*), 769 @accum($($accum)* $fvis), 787 @accum($($accum:tt)*), 803 @accum($($accum)* #[$($attr)*]), [all …]
|
| /linux-6.15/tools/perf/util/bpf_skel/ |
| H A D | bpf_prog_profiler.bpf.c | 61 struct bpf_perf_event_value *accum; in fexit_update_maps() local 67 accum = bpf_map_lookup_elem(&accum_readings, &zero); in fexit_update_maps() 68 if (accum) { in fexit_update_maps() 69 accum->counter += diff.counter; in fexit_update_maps() 70 accum->enabled += diff.enabled; in fexit_update_maps() 71 accum->running += diff.running; in fexit_update_maps()
|
| /linux-6.15/fs/xfs/scrub/ |
| H A D | rtrmap_repair.c | 200 struct xfs_rmap_irec accum; member 210 if (rf->accum.rm_blockcount == 0) in xrep_rtrmap_stash_accumulated() 214 rf->accum.rm_blockcount, rf->accum.rm_owner, in xrep_rtrmap_stash_accumulated() 215 rf->accum.rm_offset, rf->accum.rm_flags); in xrep_rtrmap_stash_accumulated() 226 struct xfs_rmap_irec *accum = &rf->accum; in xrep_rtrmap_visit_bmbt() local 241 if (accum->rm_blockcount > 0 && in xrep_rtrmap_visit_bmbt() 242 rec->br_startoff == accum->rm_offset + accum->rm_blockcount && in xrep_rtrmap_visit_bmbt() 243 rgbno == accum->rm_startblock + accum->rm_blockcount && in xrep_rtrmap_visit_bmbt() 244 rmap_flags == accum->rm_flags) { in xrep_rtrmap_visit_bmbt() 254 accum->rm_startblock = rgbno; in xrep_rtrmap_visit_bmbt() [all …]
|
| H A D | rmap_repair.c | 311 struct xfs_rmap_irec accum; member 327 if (rf->accum.rm_blockcount == 0) in xrep_rmap_stash_accumulated() 331 rf->accum.rm_blockcount, rf->accum.rm_owner, in xrep_rmap_stash_accumulated() 332 rf->accum.rm_offset, rf->accum.rm_flags); in xrep_rmap_stash_accumulated() 344 struct xfs_rmap_irec *accum = &rf->accum; in xrep_rmap_visit_bmbt() local 360 if (accum->rm_blockcount > 0 && in xrep_rmap_visit_bmbt() 361 rec->br_startoff == accum->rm_offset + accum->rm_blockcount && in xrep_rmap_visit_bmbt() 362 agbno == accum->rm_startblock + accum->rm_blockcount && in xrep_rmap_visit_bmbt() 363 rmap_flags == accum->rm_flags) { in xrep_rmap_visit_bmbt() 373 accum->rm_startblock = agbno; in xrep_rmap_visit_bmbt() [all …]
|
| /linux-6.15/tools/bpf/bpftool/skeleton/ |
| H A D | profiler.bpf.c | 84 struct bpf_perf_event_value___local *accum; in fexit_update_maps() local 90 accum = bpf_map_lookup_elem(&accum_readings, &id); in fexit_update_maps() 91 if (accum) { in fexit_update_maps() 92 accum->counter += diff.counter; in fexit_update_maps() 93 accum->enabled += diff.enabled; in fexit_update_maps() 94 accum->running += diff.running; in fexit_update_maps()
|
| /linux-6.15/mm/kmsan/ |
| H A D | kmsan_test.c | 571 volatile int accum[KMSAN_MAX_ORIGIN_DEPTH * 2 + 2]; in test_long_origin_chain() local 572 int last = ARRAY_SIZE(accum) - 1; in test_long_origin_chain() 581 accum[0] = 1; in test_long_origin_chain() 582 fibonacci((int *)accum, ARRAY_SIZE(accum), 2); in test_long_origin_chain() 583 kmsan_check_memory((void *)&accum[last], sizeof(int)); in test_long_origin_chain()
|
| /linux-6.15/drivers/hwmon/ |
| H A D | ltc2947-core.c | 965 u32 accum[2]; in ltc2947_setup() local 1039 accum, ARRAY_SIZE(accum)); in ltc2947_setup() 1041 u32 accum_reg = LTC2947_ACCUM_POL_1(accum[0]) | in ltc2947_setup() 1042 LTC2947_ACCUM_POL_2(accum[1]); in ltc2947_setup() 1071 accum, ARRAY_SIZE(accum)); in ltc2947_setup() 1077 u32 accum_val = LTC2947_ACCUM_POL_1(accum[0]) | in ltc2947_setup() 1078 LTC2947_ACCUM_POL_2(accum[1]); in ltc2947_setup()
|
| /linux-6.15/net/ipv4/ |
| H A D | inet_diag.c | 1111 int idx, accum, res; in inet_diag_dump_icsk() local 1115 accum = 0; in inet_diag_dump_icsk() 1145 num_arr[accum] = num; in inet_diag_dump_icsk() 1146 sk_arr[accum] = sk; in inet_diag_dump_icsk() 1173 if (accum == SKARR_SZ) { in inet_diag_dump_icsk() 1194 int idx, accum, res; in inet_diag_dump_icsk() local 1204 accum = 0; in inet_diag_dump_icsk() 1234 num_arr[accum] = num; in inet_diag_dump_icsk() 1235 sk_arr[accum] = sk; in inet_diag_dump_icsk() 1236 if (++accum == SKARR_SZ) in inet_diag_dump_icsk() [all …]
|
| /linux-6.15/fs/udf/ |
| H A D | super.c | 2429 unsigned int accum = 0; in udf_count_free_bitmap() local 2475 return accum; in udf_count_free_bitmap() 2481 unsigned int accum = 0; in udf_count_free_table() local 2498 return accum; in udf_count_free_table() 2525 accum = le32_to_cpu( in udf_count_free() 2528 accum = 0; in udf_count_free() 2532 if (accum) in udf_count_free() 2533 return accum; in udf_count_free() 2540 if (accum) in udf_count_free() 2541 return accum; in udf_count_free() [all …]
|
| /linux-6.15/drivers/net/ethernet/xscale/ |
| H A D | ixp46x_ts.h | 29 u32 accum; /* 0x0C Time Sync Accumulator Register */ member
|
| /linux-6.15/drivers/net/xen-netback/ |
| H A D | interface.c | 438 unsigned long accum = 0; in xenvif_get_ethtool_stats() local 441 accum += *(unsigned long *)(vif_stats + xenvif_stats[i].offset); in xenvif_get_ethtool_stats() 443 data[i] = accum; in xenvif_get_ethtool_stats()
|
| /linux-6.15/drivers/net/wireless/intel/iwlwifi/dvm/ |
| H A D | rx.c | 283 __le32 *max_delta, __le32 *accum, int size) in accum_stats() argument 289 i++, prev++, cur++, delta++, max_delta++, accum++) { in accum_stats() 293 le32_add_cpu(accum, le32_to_cpu(*delta)); in accum_stats()
|
| /linux-6.15/Documentation/devicetree/bindings/hwmon/ |
| H A D | adi,ltc2947.yaml | 65 adi,gpio-in-accum:
|
| /linux-6.15/drivers/net/ethernet/broadcom/bnxt/ |
| H A D | bnxt_tc.c | 1737 static void accumulate_val(u64 *accum, u64 val, u64 mask) in accumulate_val() argument 1741 bool wrapped = val < low_bits(*accum, mask); in accumulate_val() 1743 *accum = high_bits(*accum, mask) + val; in accumulate_val() 1745 *accum += (mask + 1); in accumulate_val()
|
| /linux-6.15/drivers/ptp/ |
| H A D | ptp_pch.c | 49 u32 accum; member
|
| /linux-6.15/drivers/hwmon/occ/ |
| H A D | common.c | 462 static u64 occ_get_powr_avg(u64 *accum, u32 *samples) in occ_get_powr_avg() argument 467 div64_u64(get_unaligned_be64(accum) * 1000000ULL, divisor); in occ_get_powr_avg()
|
| /linux-6.15/drivers/phy/ |
| H A D | phy-xgene.c | 1419 static int xgene_phy_get_avg(int accum, int samples) in xgene_phy_get_avg() argument 1421 return (accum + (samples / 2)) / samples; in xgene_phy_get_avg()
|