Home
last modified time | relevance | path

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

12345678910>>...19

/openbmc/linux/tools/testing/selftests/
H A Dkselftest_harness.h456 __EXPECT(expected, #expected, seen, #seen, ==, 1)
478 __EXPECT(expected, #expected, seen, #seen, <, 1)
500 __EXPECT(expected, #expected, seen, #seen, >, 1)
521 __EXPECT(NULL, "NULL", seen, #seen, ==, 1)
531 __EXPECT(0, "0", seen, #seen, !=, 1)
541 __EXPECT(0, "0", seen, #seen, ==, 1)
596 __EXPECT(expected, #expected, seen, #seen, <, 0)
618 __EXPECT(expected, #expected, seen, #seen, >, 0)
639 __EXPECT(NULL, "NULL", seen, #seen, ==, 0)
649 __EXPECT(0, "0", seen, #seen, !=, 0)
[all …]
/openbmc/linux/net/netfilter/
H A Dnf_conntrack_proto_tcp.c858 ct->proto.tcp.seen[0].td_end = in tcp_new()
864 ct->proto.tcp.seen[0].td_maxend = in tcp_new()
865 ct->proto.tcp.seen[0].td_end; in tcp_new()
878 ct->proto.tcp.seen[0].td_end = in tcp_new()
884 ct->proto.tcp.seen[0].td_maxend = in tcp_new()
885 ct->proto.tcp.seen[0].td_end + in tcp_new()
886 ct->proto.tcp.seen[0].td_maxwin; in tcp_new()
890 ct->proto.tcp.seen[0].flags = in tcp_new()
1284 else if ((ct->proto.tcp.seen[0].flags | ct->proto.tcp.seen[1].flags) & in nf_conntrack_tcp_packet()
1442 ct->proto.tcp.seen[0].td_scale = in nlattr_to_tcp()
[all …]
/openbmc/libmctp/tests/
H A Dtest_core.c45 bool seen; member
58 param->seen = true; in rx_message()
145 test_param.seen = false; in mctp_core_test_simple_rx()
157 assert(test_param.seen); in mctp_core_test_simple_rx()
175 test_param.seen = false; in mctp_core_test_receive_equal_length_fragments()
198 assert(test_param.seen); in mctp_core_test_receive_equal_length_fragments()
216 test_param.seen = false; in mctp_core_test_receive_unexpected_smaller_middle_fragment()
256 test_param.seen = false; in mctp_core_test_receive_unexpected_bigger_middle_fragment()
297 test_param.seen = false; in mctp_core_test_receive_smaller_end_fragment()
319 assert(test_param.seen); in mctp_core_test_receive_smaller_end_fragment()
[all …]
H A Dtest_serial.c46 static bool seen; variable
63 seen = true; in rx_message()
144 seen = false; in main()
148 assert(seen); in main()
/openbmc/qemu/scripts/
H A Dcleanup-trace-events.pl20 my %seen = ();
27 %seen = ();
46 next if $seen{$fname} || $fname eq 'trace-events';
47 $seen{$fname} = 1;
/openbmc/linux/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()
/openbmc/linux/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()
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Ddata.py217 seen = set()
220 seen |= deps
227 newdeps -= seen
250 seen = set()
253 seen |= deps
262 newdeps -= seen
394 seen = set()
397 seen |= nextdeps
403 newdeps -= seen
421 seen = set()
[all …]
/openbmc/linux/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()
/openbmc/openbmc/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)
/openbmc/phosphor-ipmi-blobs/
H A Dutils.cpp45 std::unordered_set<HandlerFactory> seen; in loadLibraries() local
77 if (seen.count(factory) > 0) in loadLibraries()
81 seen.emplace(factory); in loadLibraries()
/openbmc/openbmc/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)
/openbmc/linux/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()
/openbmc/qemu/scripts/qapi/
H A Dschema.py87 seen = {}
327 seen = {}
446 seen = OrderedDict()
461 members = seen.values()
475 m.check_clash(info, seen)
543 seen = {}
610 def check(self, schema, seen): argument
660 if seen:
697 if cname in seen:
702 seen[cname] = self
[all …]
/openbmc/qemu/scripts/qemugdb/
H A Dmtree.py37 self.seen = set()
47 if int(ptr) in self.seen:
51 self.seen.add(int(ptr))
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/oelib/
H A Dlicense.py12 self.seen = []
16 self.seen.append(node.s)
33 return visitor.seen
/openbmc/linux/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()
/openbmc/linux/net/bridge/
H A Dbr_mst.c238 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()
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dfuse-allow-other.out54 Permissions seen by nobody: 444
56 Permissions seen by nobody: 440
81 Permissions seen by nobody: 444
83 Permissions seen by nobody: 440
/openbmc/linux/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()
/openbmc/linux/arch/s390/net/
H A Dbpf_jit_comp.c1255 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1260 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1265 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1270 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1277 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1284 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1291 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1298 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1367 jit->seen |= SEEN_MEM; in bpf_jit_insn()
1377 jit->seen |= SEEN_MEM; in bpf_jit_insn()
[all …]
/openbmc/linux/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
/openbmc/linux/tools/testing/selftests/lkdtm/
H A Dstack-entropy.sh39 seen=$(tac "$log" | grep -m1 -B"$samples"0 'Starting stack offset' | \
41 bits=$(echo "obase=2; $seen" | bc | wc -L)
/openbmc/linux/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
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 …]
/openbmc/linux/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()

12345678910>>...19