Home
last modified time | relevance | path

Searched +full:0 +full:x1234 (Results 1 – 25 of 87) sorted by relevance

1234

/linux/tools/testing/selftests/livepatch/
H A Dtest-shadow-vars.sh5 . $(dirname $0)/functions.sh
20 $MOD_TEST: klp_shadow_get(obj=PTR1, id=0x1234) = PTR0
23 $MOD_TEST: klp_shadow_get_or_alloc(obj=PTR1, id=0x1234, size=8, gfp_flags=GFP_KERNEL), ctor=PTR4, c…
25 $MOD_TEST: klp_shadow_alloc(obj=PTR1, id=0x1235, size=8, gfp_flags=GFP_KERNEL), ctor=PTR4, ctor_dat…
27 $MOD_TEST: klp_shadow_alloc(obj=PTR9, id=0x1234, size=8, gfp_flags=GFP_KERNEL), ctor=PTR4, ctor_dat…
29 $MOD_TEST: klp_shadow_alloc(obj=PTR9, id=0x1235, size=8, gfp_flags=GFP_KERNEL), ctor=PTR4, ctor_dat…
31 $MOD_TEST: klp_shadow_get_or_alloc(obj=PTR14, id=0x1234, size=8, gfp_flags=GFP_KERNEL), ctor=PTR4, …
33 $MOD_TEST: klp_shadow_alloc(obj=PTR14, id=0x1235, size=8, gfp_flags=GFP_KERNEL), ctor=PTR4, ctor_da…
34 $MOD_TEST: klp_shadow_get(obj=PTR1, id=0x1234) = PTR3
36 $MOD_TEST: klp_shadow_get(obj=PTR1, id=0x1235) = PTR6
[all …]
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dcore_read_macros.c25 int duration = 0, err; in test_core_read_macros()
38 bss->k_probe_in.func = (void *)(long)0x1234; in test_core_read_macros()
39 bss->k_core_in.func = (void *)(long)0xabcd; in test_core_read_macros()
42 u_probe_in.func = (void *)(long)0x5678; in test_core_read_macros()
46 u_core_in.func = (void *)(long)0xdbca; in test_core_read_macros()
56 ASSERT_EQ(bss->k_probe_out, 0x1234, "k_probe_out"); in test_core_read_macros()
57 ASSERT_EQ(bss->k_core_out, 0xabcd, "k_core_out"); in test_core_read_macros()
59 ASSERT_EQ(bss->u_probe_out, 0x5678, "u_probe_out"); in test_core_read_macros()
60 ASSERT_EQ(bss->u_core_out, 0xdbca, "u_core_out"); in test_core_read_macros()
H A Dmap_init.c7 #define TEST_VALUE 0x1234
8 #define FILL_VALUE 0xdeadbeef
26 for (i = 0; i < nr_cpus; i++) in map_populate()
35 return 0; in map_populate()
61 if (CHECK(*map_fd < 0, "bpf_map__fd", "failed\n")) in setup()
97 return 0; in prog_run_insert_elem()
102 int i, nzCnt = 0; in check_values_one_cpu()
105 for (i = 0; i < nr_cpus; i++) { in check_values_one_cpu()
109 "unexpected for cpu %d: 0 in check_values_one_cpu()
[all...]
H A Dendian.c9 #define IN16 0x1234
10 #define IN32 0x12345678U
11 #define IN64 0x123456789abcdef0ULL
13 #define OUT16 0x3412
14 #define OUT32 0x78563412U
15 #define OUT64 0xf0debc9a78563412ULL
38 CHECK(bss->out16 != OUT16, "out16", "got 0x%llx != exp 0x%llx\n", in test_endian()
40 CHECK(bss->out32 != OUT32, "out32", "got 0x%llx != exp 0x%llx\n", in test_endian()
42 CHECK(bss->out64 != OUT64, "out16", "got 0x%llx != exp 0x%llx\n", in test_endian()
45 CHECK(bss->const16 != OUT16, "const16", "got 0x%llx != exp 0x%llx\n", in test_endian()
[all …]
H A Darena_atomics.c69 ASSERT_EQ(skel->arena->and64_value, 0x010ull << 32, "and64_value"); in test_and()
70 ASSERT_EQ(skel->arena->and32_value, 0x010, "and32_value"); in test_and()
86 ASSERT_EQ(skel->arena->or64_value, 0x111ull << 32, "or64_value"); in test_or()
87 ASSERT_EQ(skel->arena->or32_value, 0x111, "or32_value"); in test_or()
103 ASSERT_EQ(skel->arena->xor64_value, 0x101ull << 32, "xor64_value"); in test_xor()
104 ASSERT_EQ(skel->arena->xor32_value, 0x101, "xor32_value"); in test_xor()
162 ASSERT_EQ(skel->arena->uaf_recovery_fails, 0, "uaf_recovery_fails"); in test_uaf()
185 ASSERT_EQ(skel->arena->load_acquire8_result, 0x12, in test_load_acquire()
187 ASSERT_EQ(skel->arena->load_acquire16_result, 0x1234, in test_load_acquire()
189 ASSERT_EQ(skel->arena->load_acquire32_result, 0x12345678, in test_load_acquire()
[all …]
H A Draw_tp_test_run.c11 __u64 args[2] = {0x1234ULL, 0x5678ULL}; in test_raw_tp_test_run()
12 int expected_retval = 0x1234 + 0x5678; in test_raw_tp_test_run()
36 if (!ASSERT_GE(comm_fd, 0, "open /proc/self/comm")) in test_raw_tp_test_run()
40 ASSERT_GE(err, 0, "task rename"); in test_raw_tp_test_run()
42 ASSERT_NEQ(skel->bss->count, 0, "check_count"); in test_raw_tp_test_run()
43 ASSERT_EQ(skel->data->on_cpu, 0xffffffff, "check_on_cpu"); in test_raw_tp_test_run()
50 ASSERT_NEQ(err, 0, "test_run should fail for too small ctx"); in test_raw_tp_test_run()
57 for (i = 0; i < nr_online; i++) { in test_raw_tp_test_run()
62 opts.retval = 0; in test_raw_tp_test_run()
70 opts.cpu = 0xffffffff; in test_raw_tp_test_run()
[all …]
/linux/scripts/kconfig/tests/transitional/
H A Dexpected_config5 CONFIG_NEW_HEX=0x1234
10 CONFIG_NEW_HEX_PRECEDENCE=0xABCD
H A Dinitial_config5 CONFIG_OLD_HEX=0x1234
13 CONFIG_NEW_HEX_PRECEDENCE=0xABCD
14 CONFIG_OLD_HEX_PRECEDENCE=0x5678
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_endian.c8 #define IN16 0x1234
9 #define IN32 0x12345678U
10 #define IN64 0x123456789abcdef0ULL
12 __u16 in16 = 0;
13 __u32 in32 = 0;
14 __u64 in64 = 0;
16 __u16 out16 = 0;
17 __u32 out32 = 0;
18 __u64 out64 = 0;
20 __u16 const16 = 0;
[all …]
H A Darena_atomics.c17 __ulong(map_extra, 0x1ull << 32); /* start of mmap() region */
19 __ulong(map_extra, 0x1ull << 44); /* start of mmap() region */
40 __u32 pid = 0;
43 __u64 __arena_global add64_result = 0;
45 __u32 __arena_global add32_result = 0;
46 __u64 __arena_global add_stack_value_copy = 0;
47 __u64 __arena_global add_stack_result = 0;
54 return 0; in add()
65 return 0; in add()
69 __s64 __arena_global sub64_result = 0;
[all …]
/linux/tools/testing/selftests/kvm/x86/
H A Duserspace_msr_exit_test.c14 #define MSR_NON_EXISTENT 0x474f4f00
16 static u64 deny_bits = 0;
78 static u8 bitmap_deadbeef[1] = { 0x1 };
89 memset(bitmap_00000000, 0xff, sizeof(bitmap_00000000)); in prepare_bitmaps()
90 memset(bitmap_00000000_write, 0xff, sizeof(bitmap_00000000_write)); in prepare_bitmaps()
91 memset(bitmap_40000000, 0xff, sizeof(bitmap_40000000)); in prepare_bitmaps()
92 memset(bitmap_c0000000, 0xff, sizeof(bitmap_c0000000)); in prepare_bitmaps()
93 memset(bitmap_c0000000_read, 0xff, sizeof(bitmap_c0000000_read)); in prepare_bitmaps()
105 .base = 0x00000000,
110 .base = 0x00000000,
[all …]
/linux/Documentation/input/
H A Duinput.rst56 ie.time.tv_sec = 0;
57 ie.time.tv_usec = 0;
76 memset(&usetup, 0, sizeof(usetup));
78 usetup.id.vendor = 0x1234; /* sample vendor */
79 usetup.id.product = 0x5678; /* sample product */
96 emit(fd, EV_SYN, SYN_REPORT, 0);
97 emit(fd, EV_KEY, KEY_SPACE, 0);
98 emit(fd, EV_SYN, SYN_REPORT, 0);
109 return 0;
139 memset(&usetup, 0, sizeof(usetup));
[all …]
/linux/samples/rust/
H A Drust_driver_usb.rs23 [(usb::DeviceId::from_id(0x1234, 0x5678), ()),] in probe()
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-coreboot25 begins at, in hexadecimal (e.g., ``0x76ffe000``).
32 (e.g., ``0x1234``).
/linux/tools/testing/selftests/tc-testing/tc-tests/filters/
H A Dmatchall.json15 …"cmdUnderTest": "$TC filter add dev $DUMMY parent ffff: handle 0x1 prio 1 protocol ip matchall act…
16 "expExitCode": "0",
18 …"matchPattern": "^filter parent ffff: protocol ip pref 1 matchall.*handle 0x1.*gact action pass.*r…
37 …"cmdUnderTest": "$TC filter add dev $DUMMY parent 1: handle 0x1 prio 1 protocol ip matchall action…
38 "expExitCode": "0",
40 …"matchPattern": "^filter parent 1: protocol ip pref 1 matchall.*handle 0x1.*gact action pass.*ref …
59 …"cmdUnderTest": "$TC filter add dev $DUMMY parent ffff: handle 0x1 prio 1 protocol ipv6 matchall a…
60 "expExitCode": "0",
62 …"matchPattern": "^filter parent ffff: protocol ipv6 pref 1 matchall.*handle 0x1.*gact action drop.…
81 …"cmdUnderTest": "$TC filter add dev $DUMMY parent 1: handle 0x1 prio 1 protocol ipv6 matchall acti…
[all …]
/linux/drivers/scsi/
H A Dscsi_proto_test.c14 } d = { .arr = { 0x45, 0, 0, 0, 0xb0, 0xe4, 0xe3 } }; in test_scsi_proto()
15 KUNIT_EXPECT_EQ(test, d.desc.io_advice_hints_mode + 0, 1); in test_scsi_proto()
16 KUNIT_EXPECT_EQ(test, d.desc.st_enble + 0, 1); in test_scsi_proto()
17 KUNIT_EXPECT_EQ(test, d.desc.cs_enble + 0, 0); in test_scsi_proto()
18 KUNIT_EXPECT_EQ(test, d.desc.ic_enable + 0, 1); in test_scsi_proto()
19 KUNIT_EXPECT_EQ(test, d.desc.acdlu + 0, 1); in test_scsi_proto()
20 KUNIT_EXPECT_EQ(test, d.desc.rlbsr + 0, 3); in test_scsi_proto()
21 KUNIT_EXPECT_EQ(test, d.desc.lbm_descriptor_type + 0, 0); in test_scsi_proto()
22 KUNIT_EXPECT_EQ(test, d.desc.params[0] + 0, 0xe4); in test_scsi_proto()
23 KUNIT_EXPECT_EQ(test, d.desc.params[1] + 0, 0xe3); in test_scsi_proto()
[all …]
/linux/drivers/net/wireless/ath/ath6kl/
H A Dinit.c39 .dataset_patch_addr = 0x57e884,
40 .app_load_addr = 0x543180,
41 .board_ext_data_addr = 0x57e500,
47 /* hw2.0 needs override address hardcoded */
48 .app_start_override_addr = 0x944C00,
64 .dataset_patch_addr = 0x57ff74,
65 .app_load_addr = 0x1234,
66 .board_ext_data_addr = 0x542330,
70 .testscript_addr = 0x57ef74,
89 .dataset_patch_addr = 0x57e884,
[all …]
/linux/net/wireless/tests/
H A Dscan.c131 { .id = 0x1, .len = 0, },
132 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
137 { .id = 0x1, .len = 0, },
138 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
146 { .id = 0x1, .len = 0, },
147 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
150 { .id = 0x1, .len = 0, },
151 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
157 { .id = WLAN_EID_EXTENSION, .len = 0 },
160 { .id = WLAN_EID_EXTENSION, .len = 0 },
[all …]
/linux/tools/testing/selftests/tc-testing/tc-tests/actions/
H A Dpedit.json15 0,
21 "expExitCode": "0",
23 "matchPattern": "action order [0-9]+: pedit action pass keys 1.*index 1 ref.*key #0 at ipv4\\+8: val 0a000000 mask 00ffffff",
42 0,
51 "matchPattern": "action order [0-9]+: pedit action pass keys 1.*index 90 ref.*key #0 at ipv4\\+8: val 0a000000 mask 00ffffff",
71 0,
2 { global() object
6 "actions", global() string
13 [ global() array
14 "$TC actions flush action pedit", global() string
26 "$TC actions flush action pedit" global() string
33 "actions", global() string
40 [ global() array
41 "$TC actions flush action pedit", global() string
54 "$TC actions flush action pedit" global() string
61 "actions", global() string
69 [ global() array
70 "$TC actions flush action pedit", global() string
82 "$TC actions flush action pedit" global() string
89 "actions", global() string
97 [ global() array
98 "$TC actions flush action pedit", global() string
110 "$TC actions flush action pedit" global() string
117 "actions", global() string
125 [ global() array
126 "$TC actions flush action pedit", global() string
138 "$TC actions flush action pedit" global() string
145 "actions", global() string
153 [ global() array
154 "$TC actions flush action pedit", global() string
166 "$TC actions flush action pedit" global() string
173 "actions", global() string
181 [ global() array
182 "$TC actions flush action pedit", global() string
194 "$TC actions flush action pedit" global() string
201 "actions", global() string
206 [ global() array
207 "$TC actions flush action pedit", global() string
219 "$TC actions flush action pedit" global() string
226 "actions", global() string
234 [ global() array
235 "$TC actions flush action pedit", global() string
247 "$TC actions flush action pedit" global() string
254 "actions", global() string
262 [ global() array
263 "$TC actions flush action pedit", global() string
275 "$TC actions flush action pedit" global() string
282 "actions", global() string
290 [ global() array
291 "$TC actions flush action pedit", global() string
303 "$TC actions flush action pedit" global() string
310 "actions", global() string
318 [ global() array
319 "$TC actions flush action pedit", global() string
331 "$TC actions flush action pedit" global() string
338 "actions", global() string
346 [ global() array
347 "$TC actions flush action pedit", global() string
359 "$TC actions flush action pedit" global() string
366 "actions", global() string
374 [ global() array
375 "$TC actions flush action pedit", global() string
387 "$TC actions flush action pedit" global() string
394 "actions", global() string
402 [ global() array
403 "$TC actions flush action pedit", global() string
415 "$TC actions flush action pedit" global() string
422 "actions", global() string
430 [ global() array
431 "$TC actions flush action pedit", global() string
443 "$TC actions flush action pedit" global() string
450 "actions", global() string
458 [ global() array
459 "$TC actions flush action pedit", global() string
471 "$TC actions flush action pedit" global() string
478 "actions", global() string
486 [ global() array
487 "$TC actions flush action pedit", global() string
499 "$TC actions flush action pedit" global() string
506 "actions", global() string
514 [ global() array
515 "$TC actions flush action pedit", global() string
527 "$TC actions flush action pedit" global() string
534 "actions", global() string
542 [ global() array
543 "$TC actions flush action pedit", global() string
555 "$TC actions flush action pedit" global() string
562 "actions", global() string
570 [ global() array
571 "$TC actions flush action pedit", global() string
583 "$TC actions flush action pedit" global() string
590 "actions", global() string
598 [ global() array
599 "$TC actions flush action pedit", global() string
611 "$TC actions flush action pedit" global() string
618 "actions", global() string
626 [ global() array
627 "$TC actions flush action pedit", global() string
639 "$TC actions flush action pedit" global() string
646 "actions", global() string
654 [ global() array
655 "$TC actions flush action pedit", global() string
667 "$TC actions flush action pedit" global() string
674 "actions", global() string
682 [ global() array
683 "$TC actions flush action pedit", global() string
695 "$TC actions flush action pedit" global() string
702 "actions", global() string
710 [ global() array
711 "$TC actions flush action pedit", global() string
723 "$TC actions flush action pedit" global() string
730 "actions", global() string
738 [ global() array
739 "$TC actions flush action pedit", global() string
751 "$TC actions flush action pedit" global() string
758 "actions", global() string
766 [ global() array
767 "$TC actions flush action pedit", global() string
779 "$TC actions flush action pedit" global() string
786 "actions", global() string
794 [ global() array
795 "$TC actions flush action pedit", global() string
807 "$TC actions flush action pedit" global() string
814 "actions", global() string
822 [ global() array
823 "$TC actions flush action pedit", global() string
835 "$TC actions flush action pedit" global() string
842 "actions", global() string
850 [ global() array
851 "$TC actions flush action pedit", global() string
868 "actions", global() string
876 [ global() array
877 "$TC actions flush action pedit", global() string
889 "$TC actions flush action pedit" global() string
896 "actions", global() string
904 [ global() array
905 "$TC actions flush action pedit", global() string
917 "$TC actions flush action pedit" global() string
924 "actions", global() string
932 [ global() array
933 "$TC actions flush action pedit", global() string
945 "$TC actions flush action pedit" global() string
952 "actions", global() string
960 [ global() array
961 "$TC actions flush action pedit", global() string
973 "$TC actions flush action pedit" global() string
980 "actions", global() string
988 [ global() array
989 "$TC actions flush action pedit", global() string
1001 "$TC actions flush action pedit" global() string
1008 "actions", global() string
1016 [ global() array
1017 "$TC actions flush action pedit", global() string
1029 "$TC actions flush action pedit" global() string
1036 "actions", global() string
1044 [ global() array
1045 "$TC actions flush action pedit", global() string
1057 "$TC actions flush action pedit" global() string
1064 "actions", global() string
1072 [ global() array
1073 "$TC actions flush action pedit", global() string
1085 "$TC actions flush action pedit" global() string
1092 "actions", global() string
1100 [ global() array
1101 "$TC actions flush action pedit", global() string
1113 "$TC actions flush action pedit" global() string
1120 "actions", global() string
1128 [ global() array
1129 "$TC actions flush action pedit", global() string
1141 "$TC actions flush action pedit" global() string
1148 "actions", global() string
1156 [ global() array
1157 "$TC actions flush action pedit", global() string
1169 "$TC actions flush action pedit" global() string
1176 "actions", global() string
1184 [ global() array
1185 "$TC actions flush action pedit", global() string
1197 "$TC actions flush action pedit" global() string
1204 "actions", global() string
1212 [ global() array
1213 "$TC actions flush action pedit", global() string
1225 "$TC actions flush action pedit" global() string
1232 "actions", global() string
1240 [ global() array
1241 "$TC actions flush action pedit", global() string
1253 "$TC actions flush action pedit" global() string
1260 "actions", global() string
1268 [ global() array
1269 "$TC actions flush action pedit", global() string
1281 "$TC actions flush action pedit" global() string
1288 "actions", global() string
1296 [ global() array
1297 "$TC actions flush action pedit", global() string
1309 "$TC actions flush action pedit" global() string
1316 "actions", global() string
1324 [ global() array
1325 "$TC actions flush action pedit", global() string
1337 "$TC actions flush action pedit" global() string
1344 "actions", global() string
1352 [ global() array
1353 "$TC actions flush action pedit", global() string
1365 "$TC actions flush action pedit" global() string
1372 "actions", global() string
1380 [ global() array
1381 "$TC actions flush action pedit", global() string
1393 "$TC actions flush action pedit" global() string
1400 "actions", global() string
1408 [ global() array
1409 "$TC actions flush action pedit", global() string
1421 "$TC actions flush action pedit" global() string
1428 "actions", global() string
1436 [ global() array
1437 "$TC actions flush action pedit", global() string
1449 "$TC actions flush action pedit" global() string
1456 "actions", global() string
1464 [ global() array
1465 "$TC actions flush action pedit", global() string
1477 "$TC actions flush action pedit" global() string
1484 "actions", global() string
1492 [ global() array
1493 "$TC actions flush action pedit", global() string
1505 "$TC actions flush action pedit" global() string
1512 "actions", global() string
1520 [ global() array
1521 "$TC actions flush action pedit", global() string
1533 "$TC actions flush action pedit" global() string
1540 "actions", global() string
1548 [ global() array
1549 "$TC actions flush action pedit", global() string
1561 "$TC actions flush action pedit" global() string
1568 "actions", global() string
1576 [ global() array
1577 "$TC actions flush action pedit", global() string
1589 "$TC actions flush action pedit" global() string
1596 "actions", global() string
1604 [ global() array
1605 "$TC actions flush action pedit", global() string
1617 "$TC actions flush action pedit" global() string
1624 "actions", global() string
1632 [ global() array
1633 "$TC actions flush action pedit", global() string
1645 "$TC actions flush action pedit" global() string
1652 "actions", global() string
1660 [ global() array
1661 "$TC actions flush action pedit", global() string
1673 "$TC actions flush action pedit" global() string
1680 "actions", global() string
1688 [ global() array
1689 "$TC actions flush action pedit", global() string
1701 "$TC actions flush action pedit" global() string
1708 "actions", global() string
1713 [ global() array
1714 "$TC actions flush action pedit", global() string
1726 "$TC actions flush action pedit" global() string
1733 "actions", global() string
1741 [ global() array
1742 "$TC actions flush action pedit", global() string
1754 "$TC actions flush action pedit" global() string
1761 "actions", global() string
1769 [ global() array
1770 "$TC actions flush action pedit", global() string
1782 "$TC actions flush action pedit" global() string
1789 "actions", global() string
1794 [ global() array
1795 "$TC actions flush action pedit", global() string
1807 "$TC actions flush action pedit" global() string
1814 "actions", global() string
1822 [ global() array
1823 "$TC actions flush action pedit", global() string
1835 "$TC actions flush action pedit" global() string
1842 "actions", global() string
1850 [ global() array
1851 "$TC actions flush action pedit", global() string
1863 "$TC actions flush action pedit" global() string
1870 "actions", global() string
1879 [ global() array
1880 "$TC actions flush action pedit", global() string
1892 "$TC actions flush action pedit" global() string
1899 "actions", global() string
1908 [ global() array
1909 "$TC actions flush action pedit", global() string
1921 "$TC actions flush action pedit" global() string
[all...]
H A Dgact.json15 0,
21 "expExitCode": "0",
23 "matchPattern": "action order [0-9]*: gact action pass.*index 8 ref",
42 0,
48 "expExitCode": "0",
50 "matchPattern": "action order [0-9]*: gact action pipe.*index 6 ref",
69 0,
75 "expExitCode": "0",
77 "matchPattern": "action order [0-9]*: gact action reclassify.*index 5 ref",
96 0,
[all …]
/linux/drivers/net/wireless/silabs/wfx/
H A Dhif_api_general.h14 #define HIF_ID_IS_INDICATION 0x80
28 HIF_REQ_ID_CONFIGURATION = 0x09,
29 HIF_REQ_ID_CONTROL_GPIO = 0x26,
30 HIF_REQ_ID_SET_SL_MAC_KEY = 0x27,
31 HIF_REQ_ID_SL_EXCHANGE_PUB_KEYS = 0x28,
32 HIF_REQ_ID_SL_CONFIGURE = 0x29,
33 HIF_REQ_ID_PREVENT_ROLLBACK = 0x2a,
34 HIF_REQ_ID_PTA_SETTINGS = 0x2b,
35 HIF_REQ_ID_PTA_PRIORITY = 0x2c,
36 HIF_REQ_ID_PTA_STATE = 0x2d,
[all …]
/linux/drivers/usb/serial/
H A Dusb-serial-simple.c37 { USB_DEVICE(0x0a21, 0x8001) } /* MMT-7305WW */
42 { USB_DEVICE_INTERFACE_CLASS(0x058b, 0x0041, USB_CLASS_CDC_DATA) }, \
43 { USB_DEVICE(0x8087, 0x0716) }, \
44 { USB_DEVICE(0x8087, 0x0801) }
49 { USB_DEVICE(0x1404, 0xcddc) }
54 { USB_VENDOR_AND_INTERFACE_INFO(0x18d1, \
56 0x50, \
57 0x01) }
62 { USB_DEVICE(0x03f0, 0x0121) }
67 { USB_DEVICE(0x16d0, 0x0870) }
[all …]
/linux/tools/perf/tests/
H A Dbp_signal.c59 *ptr = 0x1234; in __test_function()
76 ioctl(fd1, PERF_EVENT_IOC_DISABLE, 0); in sig_handler_2()
77 ioctl(fd2, PERF_EVENT_IOC_DISABLE, 0); in sig_handler_2()
78 ioctl(fd3, PERF_EVENT_IOC_DISABLE, 0); in sig_handler_2()
97 ioctl(fd1, PERF_EVENT_IOC_DISABLE, 0); in sig_handler()
98 ioctl(fd2, PERF_EVENT_IOC_DISABLE, 0); in sig_handler()
99 ioctl(fd3, PERF_EVENT_IOC_DISABLE, 0); in sig_handler()
108 memset(&pe, 0, sizeof(struct perf_event_attr)); in __event()
112 pe.config = 0; in __event()
[all...]
/linux/tools/testing/selftests/bpf/
H A Dnetwork_helpers.h23 #define MAGIC_VAL 0x1234
30 #define SOCK_TYPE_MASK 0xf
37 * 0: Default when the test does not set
41 * -ve: It is changed to 0 before passing to listen().
116 * 8 characters are used to append the thread ID (7 digits + '\0')
118 * Returns -1 on errors, 0 otherwise
124 csum = (csum & 0xffff) + (csum >> 16); in csum_fold()
125 csum = (csum & 0xffff) + (csum >> 16); in csum_fold()
136 for (i = 0; i < num_u16; i++) in csum_partial()
144 __u32 sum = 0; in build_ip_csum()
[all …]
/linux/tools/testing/selftests/arm64/pauth/
H A Dpac.c22 #define PAC_MASK (~0xff80ffffffffffff)
23 #define ARBITRARY_VALUE (0x1234)
30 } while (0)
37 } while (0)
58 int res = 0; in n_same()
73 int same = 0; in n_same_single_set()
75 vals[0] = sign->keyia & PAC_MASK; in n_same_single_set()
83 for (int i = 0; i < nkeys - 1; i++) { in n_same_single_set()
118 sched_getaffinity(0, sizeof(mask), &mask); in exec_sign_all()
120 for (i = 0; i < sizeof(cpu_set_t); i++) in exec_sign_all()
[all …]

1234