| /linux/tools/testing/selftests/ |
| A D | kselftest_harness.h | 512 __EXPECT(expected, #expected, seen, #seen, ==, 1) 534 __EXPECT(expected, #expected, seen, #seen, <, 1) 556 __EXPECT(expected, #expected, seen, #seen, >, 1) 577 __EXPECT(NULL, "NULL", seen, #seen, ==, 1) 587 __EXPECT(0, "0", seen, #seen, !=, 1) 597 __EXPECT(0, "0", seen, #seen, ==, 1) 652 __EXPECT(expected, #expected, seen, #seen, <, 0) 674 __EXPECT(expected, #expected, seen, #seen, >, 0) 695 __EXPECT(NULL, "NULL", seen, #seen, ==, 0) 705 __EXPECT(0, "0", seen, #seen, !=, 0) [all …]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| A D | iters_task_vma.c | 22 unsigned int seen = 0; in iter_task_vma_for_each() local 31 if (bpf_cmp_unlikely(seen, >=, 1000)) in iter_task_vma_for_each() 34 vm_ranges[seen].vm_start = vma->vm_start; in iter_task_vma_for_each() 35 vm_ranges[seen].vm_end = vma->vm_end; in iter_task_vma_for_each() 36 seen++; in iter_task_vma_for_each() 39 vmas_seen = seen; in iter_task_vma_for_each()
|
| /linux/net/netfilter/ |
| A D | nf_conntrack_proto_tcp.c | 859 ct->proto.tcp.seen[0].td_end = in tcp_new() 865 ct->proto.tcp.seen[0].td_maxend = in tcp_new() 866 ct->proto.tcp.seen[0].td_end; in tcp_new() 879 ct->proto.tcp.seen[0].td_end = in tcp_new() 885 ct->proto.tcp.seen[0].td_maxend = in tcp_new() 886 ct->proto.tcp.seen[0].td_end + in tcp_new() 887 ct->proto.tcp.seen[0].td_maxwin; in tcp_new() 891 ct->proto.tcp.seen[0].flags = in tcp_new() 1285 else if ((ct->proto.tcp.seen[0].flags | ct->proto.tcp.seen[1].flags) & in nf_conntrack_tcp_packet() 1443 ct->proto.tcp.seen[0].td_scale = in nlattr_to_tcp() [all …]
|
| /linux/tools/perf/util/ |
| A 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/drivers/of/ |
| A D | device.c | 224 int seen = 0; in of_device_uevent() local 239 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent() 240 seen++; in of_device_uevent() 242 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent() 244 seen = 0; in of_device_uevent() 248 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent() 250 seen++; in of_device_uevent()
|
| /linux/drivers/dma-buf/ |
| A D | st-dma-fence.c | 152 bool seen; member 157 smp_store_mb(container_of(cb, struct simple_cb, cb)->seen, true); in simple_callback() 176 if (!cb.seen) { in test_add_callback() 207 if (cb.seen) { in test_late_add_callback() 239 if (cb.seen) { in test_rm_callback() 266 if (!cb.seen) { in test_late_rm_callback() 489 smp_store_mb(cb.seen, false); in thread_signal_callback() 493 cb.seen = true; in thread_signal_callback() 499 if (!cb.seen) { in thread_signal_callback() 504 if (!READ_ONCE(cb.seen)) { in thread_signal_callback()
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| A D | iters.c | 111 unsigned int seen; in subtest_task_vma_iters() local 135 seen = 0; in subtest_task_vma_iters() 144 bpf_iter_start = skel->bss->vm_ranges[seen].vm_start; in subtest_task_vma_iters() 145 bpf_iter_end = skel->bss->vm_ranges[seen].vm_end; in subtest_task_vma_iters() 149 seen++; in subtest_task_vma_iters() 152 if (!ASSERT_EQ(skel->bss->vmas_seen, seen, "vmas_seen_eq")) in subtest_task_vma_iters()
|
| /linux/drivers/zorro/ |
| A D | names.c | 22 unsigned short seen; member 93 int nr = prod_p->seen + 1; in zorro_name_device() 94 prod_p->seen = nr; in zorro_name_device()
|
| /linux/net/bridge/ |
| A D | br_mst.c | 238 DECLARE_BITMAP(seen, VLAN_N_VID) = { 0 }; in br_mst_info_size() 246 if (test_bit(v->brvlan->msti, seen)) in br_mst_info_size() 256 __set_bit(v->brvlan->msti, seen); in br_mst_info_size() 265 DECLARE_BITMAP(seen, VLAN_N_VID) = { 0 }; in br_mst_fill_info() 271 if (test_bit(v->brvlan->msti, seen)) in br_mst_fill_info() 283 __set_bit(v->brvlan->msti, seen); in br_mst_fill_info()
|
| /linux/sound/aoa/soundbus/ |
| A D | core.c | 66 int cplen, seen = 0; in soundbus_uevent() local 93 retval = add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in soundbus_uevent() 98 seen += 1; in soundbus_uevent() 101 retval = add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in soundbus_uevent()
|
| /linux/arch/powerpc/net/ |
| A D | bpf_jit.h | 131 unsigned int seen; member 149 return ctx->seen & (1 << (31 - i)); in bpf_is_seen_register() 154 ctx->seen |= 1 << (31 - i); in bpf_set_seen_register() 159 ctx->seen &= ~(1 << (31 - i)); in bpf_clear_seen_register()
|
| A D | bpf_jit_comp32.c | 100 if (ctx->seen & SEEN_FUNC) in bpf_jit_realloc_regs() 105 while (ctx->seen & nvreg_mask && in bpf_jit_realloc_regs() 106 (ctx->seen & SEEN_VREG_MASK) != SEEN_VREG_MASK) { in bpf_jit_realloc_regs() 131 if (ctx->seen & SEEN_TAILCALL) in bpf_jit_build_prologue() 141 if (ctx->seen & SEEN_TAILCALL) in bpf_jit_build_prologue() 152 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_prologue() 169 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_prologue() 182 if (ctx->seen & SEEN_FUNC) in bpf_jit_emit_common_epilogue() 189 if (ctx->seen & SEEN_FUNC) in bpf_jit_emit_common_epilogue() 1129 ctx->seen |= SEEN_FUNC; in bpf_jit_build_body() [all …]
|
| /linux/arch/s390/net/ |
| A D | bpf_jit_comp.c | 1469 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1480 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1491 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1502 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1515 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1528 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1541 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1554 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1663 jit->seen |= SEEN_MEM; in bpf_jit_insn() 1679 jit->seen |= SEEN_MEM; in bpf_jit_insn() [all …]
|
| /linux/Documentation/ABI/testing/ |
| A 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/arch/sparc/net/ |
| A D | bpf_jit_comp_32.c | 139 seen |= SEEN_XREG; \ 329 u32 temp[8], *prog, *func, seen = 0, pass; in bpf_jit_compile() local 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() 666 seen |= SEEN_XREG; in bpf_jit_compile() [all …]
|
| /linux/crypto/asymmetric_keys/ |
| A 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()
|
| A D | pkcs7_verify.c | 204 p->seen = false; in pkcs7_verify_sig_chain() 210 x509->seen = true; in pkcs7_verify_sig_chain() 286 if (p->seen) { in pkcs7_verify_sig_chain()
|
| /linux/tools/testing/selftests/lkdtm/ |
| A D | stack-entropy.sh | 39 seen=$(tac "$log" | grep -m1 -B"$samples"0 'Starting stack offset' | \ 41 bits=$(echo "obase=2; $seen" | bc | wc -L)
|
| /linux/fs/xfs/scrub/ |
| A D | refcount.c | 98 xfs_nlink_t seen; member 137 refchk->seen++; in xchk_refcountbt_rmap_check() 176 target_nr = refchk->refcount - refchk->seen; in xchk_refcountbt_process_rmap_fragments() 270 refchk->seen = refchk->refcount; in xchk_refcountbt_process_rmap_fragments() 294 .seen = 0, in xchk_refcountbt_xref_rmap() 318 if (irec->rc_refcount != refchk.seen) { in xchk_refcountbt_xref_rmap() 319 trace_xchk_refcount_incorrect(sc->sa.pag, irec, refchk.seen); in xchk_refcountbt_xref_rmap()
|
| /linux/fs/bcachefs/ |
| A D | thread_with_file.c | 70 static bool stdio_redirect_has_more_input(struct stdio_redirect *stdio, size_t seen) in stdio_redirect_has_more_input() argument 72 return stdio->input.buf.nr > seen || stdio->done; in stdio_redirect_has_more_input() 371 size_t seen = 0; in bch2_stdio_redirect_readline_timeout() local 379 wait_event_timeout(buf->wait, stdio_redirect_has_more_input(stdio, seen), t); in bch2_stdio_redirect_readline_timeout() 385 seen = buf->buf.nr; in bch2_stdio_redirect_readline_timeout() 386 char *n = memchr(buf->buf.data, '\n', seen); in bch2_stdio_redirect_readline_timeout() 405 seen = 0; in bch2_stdio_redirect_readline_timeout()
|
| /linux/Documentation/hwmon/ |
| A 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/Documentation/devicetree/bindings/iommu/ |
| A D | apple,sart.yaml | 23 SART2, first seen in A14 and M1, allows 36 bit of physical address space 26 SART3, first seen in M1 Pro/Max, extends both the address space and filter
|
| /linux/drivers/usb/host/ |
| A 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/samples/bpf/ |
| A D | test_lru_dist.c | 127 int seen = 0; in pfect_lru_lookup_or_insert() local 135 seen = 1; in pfect_lru_lookup_or_insert() 154 if (seen) { in pfect_lru_lookup_or_insert() 161 return seen; in pfect_lru_lookup_or_insert()
|
| /linux/include/linux/netfilter/ |
| A D | nf_conntrack_tcp.h | 18 struct ip_ct_tcp_state seen[2]; /* connection parameters per direction */ member
|