Home
last modified time | relevance | path

Searched refs:VAL1 (Results 1 – 18 of 18) sorted by relevance

/OK3568_Linux_fs/kernel/arch/arm/probes/kprobes/
H A Dtest-thumb.c65 TEST_R( "lsls r7, r",0,VAL1,", #5") in kprobe_thumb16_test_cases()
67 TEST_R( "lsrs r7, r",0,VAL1,", #5") in kprobe_thumb16_test_cases()
69 TEST_R( "asrs r7, r",0,VAL1,", #5") in kprobe_thumb16_test_cases()
71 TEST_RR( "adds r2, r",0,VAL1,", r",7,VAL2,"") in kprobe_thumb16_test_cases()
73 TEST_RR( "subs r2, r",0,VAL1,", r",7,VAL2,"") in kprobe_thumb16_test_cases()
75 TEST_R( "adds r7, r",0,VAL1,", #5") in kprobe_thumb16_test_cases()
77 TEST_R( "subs r7, r",0,VAL1,", #5") in kprobe_thumb16_test_cases()
84 TEST_R( "adds.n r",0,VAL1,", #0x5f") in kprobe_thumb16_test_cases()
86 TEST_R( "subs.n r",0,VAL1,", #0x5f") in kprobe_thumb16_test_cases()
92 TEST_RR( op" r",0,VAL1,", r",7,val,"") \ in kprobe_thumb16_test_cases()
[all …]
H A Dtest-arm.c58 TEST_RR( op s "eq r0, r",1, VAL1,", r",2, val, "") \ in kprobe_arm_test_cases()
59 TEST_RR( op s "ne r1, r",1, VAL1,", r",2, val, ", lsl #3") \ in kprobe_arm_test_cases()
60 TEST_RR( op s "cs r2, r",3, VAL1,", r",2, val, ", lsr #4") \ in kprobe_arm_test_cases()
61 TEST_RR( op s "cc r3, r",3, VAL1,", r",2, val, ", asr #5") \ in kprobe_arm_test_cases()
62 TEST_RR( op s "mi r4, r",5, VAL1,", r",2, N(val),", asr #6") \ in kprobe_arm_test_cases()
63 TEST_RR( op s "pl r5, r",5, VAL1,", r",2, val, ", ror #7") \ in kprobe_arm_test_cases()
64 TEST_RR( op s "vs r6, r",7, VAL1,", r",2, val, ", rrx") \ in kprobe_arm_test_cases()
65 TEST_R( op s "vc r6, r",7, VAL1,", pc, lsl #3") \ in kprobe_arm_test_cases()
66 TEST_R( op s "vc r6, r",7, VAL1,", sp, lsr #4") \ in kprobe_arm_test_cases()
67 TEST_R( op s "vc r6, pc, r",7, VAL1,", asr #5") \ in kprobe_arm_test_cases()
[all …]
H A Dtest-core.h441 #define VAL1 0x12345678 macro
442 #define VAL2 N(VAL1)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dselftest.h322 #define ASSERT_EQ(VAL1, VAL2) \ argument
323 ASSERT_EQ_AT ((SELFTEST_LOCATION), (VAL1), (VAL2))
328 #define ASSERT_EQ_AT(LOC, VAL1, VAL2) \ argument
330 const char *desc_ = "ASSERT_EQ (" #VAL1 ", " #VAL2 ")"; \
331 if ((VAL1) == (VAL2)) \
341 #define ASSERT_KNOWN_EQ(VAL1, VAL2) \ argument
342 ASSERT_KNOWN_EQ_AT ((SELFTEST_LOCATION), (VAL1), (VAL2))
347 #define ASSERT_KNOWN_EQ_AT(LOC, VAL1, VAL2) \ argument
349 const char *desc = "ASSERT_KNOWN_EQ (" #VAL1 ", " #VAL2 ")"; \
350 if (known_eq (VAL1, VAL2)) \
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dselftest.h322 #define ASSERT_EQ(VAL1, VAL2) \ argument
323 ASSERT_EQ_AT ((SELFTEST_LOCATION), (VAL1), (VAL2))
328 #define ASSERT_EQ_AT(LOC, VAL1, VAL2) \ argument
330 const char *desc_ = "ASSERT_EQ (" #VAL1 ", " #VAL2 ")"; \
331 if ((VAL1) == (VAL2)) \
341 #define ASSERT_KNOWN_EQ(VAL1, VAL2) \ argument
342 ASSERT_KNOWN_EQ_AT ((SELFTEST_LOCATION), (VAL1), (VAL2))
347 #define ASSERT_KNOWN_EQ_AT(LOC, VAL1, VAL2) \ argument
349 const char *desc = "ASSERT_KNOWN_EQ (" #VAL1 ", " #VAL2 ")"; \
350 if (known_eq (VAL1, VAL2)) \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/os_test/
H A Dos_test.c652 #define VAL1 2.6 in test_float() macro
666 EXPECT(my_dcmpeq(test_float_dadd(VAL1, VAL2), VAL1 + VAL2, DPREC)); in test_float()
667 EXPECT(my_dcmpeq(test_float_ddiv(VAL1, VAL2), VAL1 / VAL2, DPREC)); in test_float()
668 EXPECT(my_dcmpeq(test_float_dmul(VAL1, VAL2), VAL1 * VAL2, DPREC)); in test_float()
669 EXPECT(my_dcmpeq(test_float_drsub(VAL1, VAL2), VAL2 - VAL1, DPREC)); in test_float()
670 EXPECT(my_dcmpeq(test_float_dsub(VAL1, VAL2), VAL1 - VAL2, DPREC)); in test_float()
672 EXPECT(test_float_dcmpeq(VAL1, VAL1) == 1); in test_float()
673 EXPECT(test_float_dcmplt(VAL1, VAL2) == 1); in test_float()
674 EXPECT(test_float_dcmple(VAL1, VAL1) == 1); in test_float()
675 EXPECT(test_float_dcmpge(VAL1, VAL1) == 1); in test_float()
[all …]
/OK3568_Linux_fs/kernel/tools/bpf/bpftool/Documentation/
H A Dbpftool-btf.rst99 VAL1 = 3,
121 .enum_field = VAL1,
159 'VAL1' val=3
/OK3568_Linux_fs/kernel/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic.h1379 #define QLCNIC_FILL_STATS(VAL1) \ argument
1380 (((VAL1) == QLCNIC_STATS_NOT_AVAIL) ? 0 : VAL1)
1384 #define QLCNIC_ADD_ESW_STATS(VAL1, VAL2)\ argument
1386 if (((VAL1) == QLCNIC_STATS_NOT_AVAIL) && \
1388 (VAL1) = (VAL2); \
1389 else if (((VAL1) != QLCNIC_STATS_NOT_AVAIL) && \
1391 (VAL1) += (VAL2); \
/OK3568_Linux_fs/kernel/drivers/net/ethernet/amd/
H A Damd8111e.c435 writel((u32) VAL1|EN_PMGR, mmio + CMD3 ); in amd8111e_restart()
450 writel(VAL3 | LCINTEN | VAL1 | TINTEN0 | VAL0 | RINTEN0, mmio + INTEN0); in amd8111e_restart()
1292 writel( VAL1 | TDMD0, lp->mmio + CMD0); in amd8111e_start_xmit()
1553 writel( VAL1|MPPLBA, lp->mmio + CMD3); in amd8111e_enable_magicpkt()
H A Damd8111e.h177 VAL1 = (1 << 15), /* VAL bit for byte 1 */ enumerator
/OK3568_Linux_fs/kernel/Documentation/networking/device_drivers/ethernet/intel/
H A Digb.rst32 modprobe igb [<option>=<VAL1>,<VAL2>,...]
H A De1000e.rst32 modprobe e1000e [<option>=<VAL1>,<VAL2>,...]
H A Dixgb.rst77 modprobe ixgb [<option>=<VAL1>,<VAL2>,...]
/OK3568_Linux_fs/kernel/Documentation/networking/device_drivers/wifi/intel/
H A Dipw2100.rst121 modprobe ipw2100 [<option>=<VAL1><,VAL2>...]
/OK3568_Linux_fs/kernel/Documentation/networking/device_drivers/ethernet/stmicro/
H A Dstmmac.rst109 modprobe stmmac_pci [<option>=<VAL1>,<VAL2>,...]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dcgroup-v2.rst683 VAL1\n
689 VAL0 VAL1 ...\n
694 KEY1 VAL1\n
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dgdb.info11322 'find [/SN] START_ADDR, +LEN, VAL1 [, VAL2, ...]'
11323 'find [/SN] START_ADDR, END_ADDR, VAL1 [, VAL2, ...]'
11324 Search memory for the sequence of bytes specified by VAL1, VAL2,
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dgdb.info11322 'find [/SN] START_ADDR, +LEN, VAL1 [, VAL2, ...]'
11323 'find [/SN] START_ADDR, END_ADDR, VAL1 [, VAL2, ...]'
11324 Search memory for the sequence of bytes specified by VAL1, VAL2,