Home
last modified time | relevance | path

Searched refs:seen (Results 1 - 25 of 109) sorted by relevance

12345

/kernel/linux/linux-5.10/tools/testing/selftests/
H A Dkselftest_harness.h438 * @seen: measured value
442 #define ASSERT_EQ(expected, seen) \
443 __EXPECT(expected, #expected, seen, #seen, ==, 1)
449 * @seen: measured value
453 #define ASSERT_NE(expected, seen) \
454 __EXPECT(expected, #expected, seen, #seen, !=, 1)
460 * @seen: measured value
464 #define ASSERT_LT(expected, seen) \
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/
H A Dkselftest_harness.h451 * @seen: measured value
455 #define ASSERT_EQ(expected, seen) \
456 __EXPECT(expected, #expected, seen, #seen, ==, 1)
462 * @seen: measured value
466 #define ASSERT_NE(expected, seen) \
467 __EXPECT(expected, #expected, seen, #seen, !=, 1)
473 * @seen: measured value
477 #define ASSERT_LT(expected, seen) \
[all...]
/kernel/linux/linux-5.10/arch/powerpc/net/
H A Dbpf_jit_comp.c30 if (ctx->seen & (SEEN_MEM | SEEN_DATAREF)) { in bpf_jit_build_prologue()
32 if (ctx->seen & SEEN_DATAREF) { in bpf_jit_build_prologue()
41 if (ctx->seen & SEEN_MEM) { in bpf_jit_build_prologue()
47 if (ctx->seen & (1 << (i-r_M))) in bpf_jit_build_prologue()
54 if (ctx->seen & SEEN_DATAREF) { in bpf_jit_build_prologue()
68 if (ctx->seen & SEEN_XREG) { in bpf_jit_build_prologue()
85 if (ctx->seen & (SEEN_MEM | SEEN_DATAREF)) { in bpf_jit_build_epilogue()
87 if (ctx->seen & SEEN_DATAREF) { in bpf_jit_build_epilogue()
93 if (ctx->seen & SEEN_MEM) { in bpf_jit_build_epilogue()
96 if (ctx->seen in bpf_jit_build_epilogue()
[all...]
/kernel/linux/linux-5.10/net/netfilter/
H A Dnf_conntrack_proto_tcp.c115 * we haven't seen.
124 * SYN_SENT: SYN-only packet seen
125 * SYN_SENT2: SYN-only packet seen from reply dir, simultaneous open
126 * SYN_RECV: SYN-ACK packet seen
127 * ESTABLISHED: ACK packet seen
128 * FIN_WAIT: FIN packet seen
129 * CLOSE_WAIT: ACK seen (after FIN)
130 * LAST_ACK: FIN seen (after FIN)
131 * TIME_WAIT: last ACK seen
185 * sFW -> sLA FIN seen i
977 struct ip_ct_tcp_state seen = {}; nf_conntrack_tcp_packet() local
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Ddemangle-rust.c103 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()
120 /* Count how many distinct digits seen */ in is_prefixed_hash()
123 if (seen[i]) in is_prefixed_hash()
/kernel/linux/linux-6.6/tools/perf/util/
H A Ddemangle-rust.c103 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()
120 /* Count how many distinct digits seen */ in is_prefixed_hash()
123 if (seen[i]) in is_prefixed_hash()
/kernel/linux/linux-6.6/net/netfilter/
H A Dnf_conntrack_proto_tcp.c107 * we haven't seen.
116 * SYN_SENT: SYN-only packet seen
117 * SYN_SENT2: SYN-only packet seen from reply dir, simultaneous open
118 * SYN_RECV: SYN-ACK packet seen
119 * ESTABLISHED: ACK packet seen
120 * FIN_WAIT: FIN packet seen
121 * CLOSE_WAIT: ACK seen (after FIN)
122 * LAST_ACK: FIN seen (after FIN)
123 * TIME_WAIT: last ACK seen
177 * sFW -> sLA FIN seen i
1084 struct ip_ct_tcp_state seen = {}; nf_conntrack_tcp_packet() local
[all...]
/kernel/linux/linux-6.6/drivers/of/
H A Ddevice.c252 int seen = 0; in of_device_uevent() local
267 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
268 seen++; in of_device_uevent()
270 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent()
272 seen = 0; in of_device_uevent()
276 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent()
278 seen++; in of_device_uevent()
/kernel/linux/linux-5.10/drivers/dma-buf/
H A Dst-dma-fence.c148 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()
475 miss++, cb.seen = true; in thread_signal_callback()
480 if (!cb.seen) { in thread_signal_callback()
485 if (!READ_ONCE(cb.seen)) { in thread_signal_callback()
[all...]
/kernel/linux/linux-6.6/drivers/dma-buf/
H A Dst-dma-fence.c152 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()
[all...]
/kernel/linux/linux-5.10/drivers/of/
H A Ddevice.c308 int seen = 0; in of_device_uevent() local
323 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
324 seen++; in of_device_uevent()
326 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent()
328 seen = 0; in of_device_uevent()
332 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent()
334 seen++; in of_device_uevent()
/kernel/linux/linux-5.10/arch/s390/net/
H A Dbpf_jit_comp.c36 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()
431 * Return first seen register (from start)
445 * Return last seen register (from start) (gap >= 2)
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 in bpf_jit_prologue()
[all...]
/kernel/linux/linux-5.10/drivers/zorro/
H A Dnames.c21 unsigned short seen; member
92 int nr = prod_p->seen + 1; in zorro_name_device()
93 prod_p->seen = nr; in zorro_name_device()
/kernel/linux/linux-6.6/drivers/zorro/
H A Dnames.c22 unsigned short seen; member
93 int nr = prod_p->seen + 1; in zorro_name_device()
94 prod_p->seen = nr; in zorro_name_device()
/kernel/linux/linux-6.6/arch/s390/net/
H A Dbpf_jit_comp.c37 u32 seen; /* Flags to remember seen eBPF instructions */ member
305 jit->seen |= SEEN_LITERAL; \
321 jit->seen |= SEEN_LITERAL; \
425 if (jit->seen & SEEN_STACK) in restore_regs()
437 * Return first seen register (from start)
451 * Return last seen register (from start) (gap >= 2)
576 if (is_first_pass(jit) || (jit->seen & SEEN_LITERAL)) { in bpf_jit_prologue()
589 if (is_first_pass(jit) || (jit->seen & SEEN_STACK)) { in bpf_jit_prologue()
590 if (is_first_pass(jit) || (jit->seen in bpf_jit_prologue()
[all...]
/kernel/linux/linux-6.6/arch/powerpc/net/
H A Dbpf_jit.h134 unsigned int seen; member
158 return ctx->seen & (1 << (31 - i)); in bpf_is_seen_register()
163 ctx->seen |= 1 << (31 - i); in bpf_set_seen_register()
168 ctx->seen &= ~(1 << (31 - i)); in bpf_clear_seen_register()
/kernel/linux/linux-5.10/sound/aoa/soundbus/
H A Dcore.c64 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()
/kernel/linux/linux-6.6/sound/aoa/soundbus/
H A Dcore.c64 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()
/kernel/linux/linux-6.6/net/bridge/
H A Dbr_mst.c235 DECLARE_BITMAP(seen, VLAN_N_VID) = { 0 }; in br_mst_info_size()
243 if (test_bit(v->brvlan->msti, seen)) in br_mst_info_size()
253 __set_bit(v->brvlan->msti, seen); in br_mst_info_size()
262 DECLARE_BITMAP(seen, VLAN_N_VID) = { 0 }; in br_mst_fill_info()
268 if (test_bit(v->brvlan->msti, seen)) in br_mst_fill_info()
280 __set_bit(v->brvlan->msti, seen); in br_mst_fill_info()
/kernel/linux/linux-5.10/arch/sparc/net/
H A Dbpf_jit_comp_32.c139 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 | in bpf_jit_compile()
[all...]
/kernel/linux/linux-6.6/arch/sparc/net/
H A Dbpf_jit_comp_32.c139 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 | in bpf_jit_compile()
[all...]
/kernel/linux/linux-5.10/crypto/asymmetric_keys/
H A Dpkcs7_trust.c39 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()
/kernel/linux/linux-5.10/tools/testing/selftests/net/forwarding/
H A Dbridge_igmp.sh82 # return 0 if the packet wasn't seen on host2_if or 1 if it was
89 local seen=0
104 seen=1
110 return $seen
/kernel/linux/linux-5.10/scripts/
H A Dcheck-sysctl-docs49 seen[entry]++
169 # Count the first subdirectory as seen
170 seen[components[2]]++
177 if (!seen[entry]) {
/kernel/linux/linux-6.6/crypto/asymmetric_keys/
H A Dpkcs7_trust.c39 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()

Completed in 21 milliseconds

12345