Home
last modified time | relevance | path

Searched refs:seen (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/OK3568_Linux_fs/kernel/tools/testing/selftests/
H A Dkselftest_harness.h442 #define ASSERT_EQ(expected, seen) \ argument
443 __EXPECT(expected, #expected, seen, #seen, ==, 1)
453 #define ASSERT_NE(expected, seen) \ argument
454 __EXPECT(expected, #expected, seen, #seen, !=, 1)
464 #define ASSERT_LT(expected, seen) \ argument
465 __EXPECT(expected, #expected, seen, #seen, <, 1)
475 #define ASSERT_LE(expected, seen) \ argument
476 __EXPECT(expected, #expected, seen, #seen, <=, 1)
486 #define ASSERT_GT(expected, seen) \ argument
487 __EXPECT(expected, #expected, seen, #seen, >, 1)
[all …]
/OK3568_Linux_fs/kernel/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 & (1 << (i-r_M))) in bpf_jit_build_epilogue()
[all …]
/OK3568_Linux_fs/kernel/net/netfilter/
H A Dnf_conntrack_proto_tcp.c471 struct ip_ct_tcp_state *sender = &state->seen[dir]; in tcp_in_window()
472 struct ip_ct_tcp_state *receiver = &state->seen[!dir]; in tcp_in_window()
772 const struct ip_ct_tcp_state *sender = &ct->proto.tcp.seen[0]; in tcp_new()
773 const struct ip_ct_tcp_state *receiver = &ct->proto.tcp.seen[1]; in tcp_new()
787 ct->proto.tcp.seen[0].td_end = in tcp_new()
790 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window); in tcp_new()
791 if (ct->proto.tcp.seen[0].td_maxwin == 0) in tcp_new()
792 ct->proto.tcp.seen[0].td_maxwin = 1; in tcp_new()
793 ct->proto.tcp.seen[0].td_maxend = in tcp_new()
794 ct->proto.tcp.seen[0].td_end; in tcp_new()
[all …]
/OK3568_Linux_fs/kernel/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()
123 if (seen[i]) in is_prefixed_hash()
/OK3568_Linux_fs/kernel/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()
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 …]
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Ddata.py224 seen = set()
227 seen |= deps
234 newdeps -= seen
257 seen = set()
260 seen |= deps
269 newdeps -= seen
390 seen = set()
393 seen |= nextdeps
399 newdeps -= seen
418 seen = set()
[all …]
/OK3568_Linux_fs/kernel/drivers/of/
H A Ddevice.c305 int seen = 0; in of_device_uevent() local
320 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
321 seen++; in of_device_uevent()
323 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent()
325 seen = 0; in of_device_uevent()
329 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent()
331 seen++; in of_device_uevent()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/decorator/
H A Ddepends.py44 def _dep_resolve(graph, node, resolved, seen): argument
45 seen.append(node)
48 if edge in seen:
51 _dep_resolve(graph, edge, resolved, seen)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dpersist_data.py38 def _iter_helper(self, seen, iterator): argument
41 self.assertTrue(v in seen)
42 seen.remove(v)
43 self.assertEqual(len(seen), 0, '%s not seen' % seen)
/OK3568_Linux_fs/kernel/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 |= SEEN_DATAREF; in bpf_jit_compile()
[all …]
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-bus-pci-devices-aer_stats5 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
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/oelib/
H A Dlicense.py10 self.seen = []
14 self.seen.append(node.s)
31 return visitor.seen
/OK3568_Linux_fs/kernel/scripts/
H A Dcheck-sysctl-docs49 seen[entry]++
170 seen[components[2]]++
177 if (!seen[entry]) {
H A Dver_linux41 if ($NF ~ libc && !seen[ver = version("readlink " $NF)]++)
43 else if ($NF ~ libcpp && !seen[ver = version("readlink " $NF)]++)
/OK3568_Linux_fs/kernel/fs/xfs/scrub/
H A Drefcount.c81 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()
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/
H A Drootfs.py78 def _dep_resolve(graph, node, resolved, seen): argument
79 seen.append(node)
83 if edge in seen:
87 _dep_resolve(graph, edge, resolved, seen)
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/forwarding/
H A Dbridge_igmp.sh89 local seen=0
104 seen=1
110 return $seen
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dgit-make-shallow123 seen = set()
126 if rev in seen:
132 seen.add(rev)
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Ddrivetemp.rst37 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
/OK3568_Linux_fs/external/xserver/hw/xfree86/
H A Dxorg-wrapper.c180 static int seen; in on_console()
182 if (!seen) { in on_console()
185 seen = 1; in on_console()
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-5.10/scripts/
H A Dver_linux41 if ($NF ~ libc && !seen[ver = version("readlink " $NF)]++)
43 else if ($NF ~ libcpp && !seen[ver = version("readlink " $NF)]++)

12345678910>>...17