/Linux-v5.15/tools/testing/selftests/ |
D | kselftest_harness.h | 446 #define ASSERT_EQ(expected, seen) \ argument 447 __EXPECT(expected, #expected, seen, #seen, ==, 1) 457 #define ASSERT_NE(expected, seen) \ argument 458 __EXPECT(expected, #expected, seen, #seen, !=, 1) 468 #define ASSERT_LT(expected, seen) \ argument 469 __EXPECT(expected, #expected, seen, #seen, <, 1) 479 #define ASSERT_LE(expected, seen) \ argument 480 __EXPECT(expected, #expected, seen, #seen, <=, 1) 490 #define ASSERT_GT(expected, seen) \ argument 491 __EXPECT(expected, #expected, seen, #seen, >, 1) [all …]
|
/Linux-v5.15/net/netfilter/ |
D | nf_conntrack_proto_tcp.c | 460 struct ip_ct_tcp_state *sender = &state->seen[dir]; in tcp_in_window() 461 struct ip_ct_tcp_state *receiver = &state->seen[!dir]; in tcp_in_window() 761 const struct ip_ct_tcp_state *sender = &ct->proto.tcp.seen[0]; in tcp_new() 762 const struct ip_ct_tcp_state *receiver = &ct->proto.tcp.seen[1]; in tcp_new() 776 ct->proto.tcp.seen[0].td_end = in tcp_new() 779 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window); in tcp_new() 780 if (ct->proto.tcp.seen[0].td_maxwin == 0) in tcp_new() 781 ct->proto.tcp.seen[0].td_maxwin = 1; in tcp_new() 782 ct->proto.tcp.seen[0].td_maxend = in tcp_new() 783 ct->proto.tcp.seen[0].td_end; in tcp_new() [all …]
|
/Linux-v5.15/tools/perf/util/ |
D | demangle-rust.c | 103 bool seen[16]; in is_prefixed_hash() local 111 memset(seen, false, sizeof(seen)); in is_prefixed_hash() 114 seen[*str - '0'] = true; in is_prefixed_hash() 116 seen[*str - 'a' + 10] = true; in is_prefixed_hash() 123 if (seen[i]) in is_prefixed_hash()
|
/Linux-v5.15/drivers/dma-buf/ |
D | st-dma-fence.c | 148 bool seen; member 153 smp_store_mb(container_of(cb, struct simple_cb, cb)->seen, true); in simple_callback() 172 if (!cb.seen) { in test_add_callback() 201 if (cb.seen) { in test_late_add_callback() 233 if (cb.seen) { in test_rm_callback() 260 if (!cb.seen) { in test_late_rm_callback() 473 smp_store_mb(cb.seen, false); in thread_signal_callback() 477 cb.seen = true; in thread_signal_callback() 483 if (!cb.seen) { in thread_signal_callback() 488 if (!READ_ONCE(cb.seen)) { in thread_signal_callback()
|
/Linux-v5.15/arch/s390/net/ |
D | bpf_jit_comp.c | 36 u32 seen; /* Flags to remember seen eBPF instructions */ member 299 jit->seen |= SEEN_LITERAL; \ 315 jit->seen |= SEEN_LITERAL; \ 419 if (jit->seen & SEEN_STACK) in restore_regs() 517 if (jit->seen & SEEN_TAIL_CALL) { in bpf_jit_prologue() 532 if (is_first_pass(jit) || (jit->seen & SEEN_LITERAL)) { in bpf_jit_prologue() 545 if (is_first_pass(jit) || (jit->seen & SEEN_STACK)) { in bpf_jit_prologue() 546 if (is_first_pass(jit) || (jit->seen & SEEN_FUNC)) in bpf_jit_prologue() 553 if (is_first_pass(jit) || (jit->seen & SEEN_FUNC)) in bpf_jit_prologue() 589 (is_first_pass(jit) || (jit->seen & SEEN_FUNC))) { in bpf_jit_epilogue() [all …]
|
/Linux-v5.15/drivers/of/ |
D | device.c | 333 int seen = 0; in of_device_uevent() local 348 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent() 349 seen++; in of_device_uevent() 351 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent() 353 seen = 0; in of_device_uevent() 357 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent() 359 seen++; in of_device_uevent()
|
/Linux-v5.15/drivers/zorro/ |
D | names.c | 21 unsigned short seen; member 92 int nr = prod_p->seen + 1; in zorro_name_device() 93 prod_p->seen = nr; in zorro_name_device()
|
/Linux-v5.15/sound/aoa/soundbus/ |
D | core.c | 64 int cplen, seen = 0; in soundbus_uevent() local 91 retval = add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in soundbus_uevent() 96 seen += 1; in soundbus_uevent() 99 retval = add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in soundbus_uevent()
|
/Linux-v5.15/arch/powerpc/net/ |
D | bpf_jit.h | 150 unsigned int seen; member 164 return ctx->seen & (1 << (31 - i)); in bpf_is_seen_register() 169 ctx->seen |= 1 << (31 - i); in bpf_set_seen_register() 174 ctx->seen &= ~(1 << (31 - i)); in bpf_clear_seen_register()
|
D | bpf_jit_comp32.c | 82 if (ctx->seen & SEEN_FUNC) in bpf_jit_realloc_regs() 85 while (ctx->seen & SEEN_NVREG_MASK && in bpf_jit_realloc_regs() 86 (ctx->seen & SEEN_VREG_MASK) != SEEN_VREG_MASK) { in bpf_jit_realloc_regs() 87 int old = 32 - fls(ctx->seen & (SEEN_NVREG_MASK & 0xaaaaaaab)); in bpf_jit_realloc_regs() 88 int new = 32 - fls(~ctx->seen & (SEEN_VREG_MASK & 0xaaaaaaaa)); in bpf_jit_realloc_regs() 120 if (ctx->seen & SEEN_TAILCALL) in bpf_jit_build_prologue() 132 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_prologue() 155 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_prologue() 177 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_epilogue() 182 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_epilogue() [all …]
|
D | bpf_jit_comp.c | 163 if (cgctx.seen & SEEN_TAILCALL) { in bpf_int_jit_compile() 222 proglen - (cgctx.idx * 4), cgctx.seen); in bpf_int_jit_compile()
|
/Linux-v5.15/Documentation/ABI/testing/ |
D | sysfs-bus-pci-devices-aer_stats | 5 statistical counters indicate the errors "as seen/reported by the device". 8 errors may be "seen" / reported by the link partner and not the 16 Description: List of correctable errors seen and reported by this 37 Description: List of uncorrectable fatal errors seen and reported by this 67 Description: List of uncorrectable nonfatal errors seen and reported by this 99 (internally) the ERR_* messages for errors seen by the internal rootport PCI
|
/Linux-v5.15/arch/sparc/net/ |
D | bpf_jit_comp_32.c | 139 seen |= SEEN_XREG; \ 329 u32 temp[8], *prog, *func, seen = 0, pass; in bpf_jit_compile() local 352 u8 seen_or_pass0 = (pass == 0) ? (SEEN_XREG | SEEN_DATAREF | SEEN_MEM) : seen; in bpf_jit_compile() 513 seen |= SEEN_XREG; in bpf_jit_compile() 517 seen |= SEEN_XREG; in bpf_jit_compile() 577 seen |= SEEN_MEM; in bpf_jit_compile() 581 seen |= SEEN_MEM | SEEN_XREG; in bpf_jit_compile() 585 seen |= SEEN_MEM; in bpf_jit_compile() 589 seen |= SEEN_MEM | SEEN_XREG; in bpf_jit_compile() 598 common_load: seen |= SEEN_DATAREF; in bpf_jit_compile() [all …]
|
/Linux-v5.15/scripts/ |
D | check-sysctl-docs | 49 seen[entry]++ 170 seen[components[2]]++ 177 if (!seen[entry]) {
|
/Linux-v5.15/tools/testing/selftests/lkdtm/ |
D | stack-entropy.sh | 25 seen=$(tac "$log" | grep -m1 -B"$samples"0 'Starting stack offset' | \ 27 bits=$(echo "obase=2; $seen" | bc | wc -L)
|
/Linux-v5.15/crypto/asymmetric_keys/ |
D | pkcs7_trust.c | 39 if (x509->seen) { in pkcs7_validate_trust_one() 45 x509->seen = true; in pkcs7_validate_trust_one() 167 p->seen = false; in pkcs7_validate_trust()
|
D | pkcs7_verify.c | 210 p->seen = false; in pkcs7_verify_sig_chain() 216 x509->seen = true; in pkcs7_verify_sig_chain() 295 if (p->seen) { in pkcs7_verify_sig_chain()
|
D | x509_parser.h | 36 bool seen; /* Infinite recursion prevention */ member
|
/Linux-v5.15/fs/xfs/scrub/ |
D | refcount.c | 81 xfs_nlink_t seen; member 120 refchk->seen++; in xchk_refcountbt_rmap_check() 159 target_nr = refchk->refcount - refchk->seen; in xchk_refcountbt_process_rmap_fragments() 253 refchk->seen = refchk->refcount; in xchk_refcountbt_process_rmap_fragments() 279 .seen = 0, in xchk_refcountbt_xref_rmap() 303 if (refcount != refchk.seen) in xchk_refcountbt_xref_rmap()
|
/Linux-v5.15/Documentation/hwmon/ |
D | drivetemp.rst | 37 This has been observed with WD120EFAX drives, but may be seen with other 68 temp1_lowest Minimum temperature seen this power cycle 69 temp1_highest Maximum temperature seen this power cycle
|
/Linux-v5.15/Documentation/accounting/ |
D | delay-accounting.rst | 48 delay seen for cpu, sync block I/O, swapin, memory reclaim etc. 84 seen by a given task or a task group (tgid). 87 seen. 113 Get delays seen in executing a given simple command::
|
/Linux-v5.15/drivers/usb/host/ |
D | ohci-dbg.c | 489 struct ed **seen, *ed; in fill_periodic_buffer() local 495 seen = kmalloc_array(DBG_SCHED_LIMIT, sizeof(*seen), GFP_ATOMIC); in fill_periodic_buffer() 496 if (!seen) in fill_periodic_buffer() 525 if (seen [temp] == ed) in fill_periodic_buffer() 558 seen [seen_count++] = ed; in fill_periodic_buffer() 575 kfree (seen); in fill_periodic_buffer()
|
/Linux-v5.15/samples/bpf/ |
D | test_lru_dist.c | 133 int seen = 0; in pfect_lru_lookup_or_insert() local 141 seen = 1; in pfect_lru_lookup_or_insert() 160 if (seen) { in pfect_lru_lookup_or_insert() 167 return seen; in pfect_lru_lookup_or_insert()
|
/Linux-v5.15/include/linux/netfilter/ |
D | nf_conntrack_tcp.h | 18 struct ip_ct_tcp_state seen[2]; /* connection parameters per direction */ member
|
/Linux-v5.15/tools/testing/selftests/powerpc/scripts/ |
D | hmi.sh | 77 echo "Haven't seen expected $expected_hmis recoveries after 1 min. Aborting."
|