Home
last modified time | relevance | path

Searched refs:tst (Results 1 – 25 of 183) sorted by relevance

12345678

/linux-6.12.1/lib/
Dtest_firmware.c141 struct test_firmware_upload *tst; in upload_lookup_name() local
143 list_for_each_entry(tst, &test_upload_list, node) in upload_lookup_name()
144 if (strncmp(name, tst->name, strlen(tst->name)) == 0) in upload_lookup_name()
145 return tst; in upload_lookup_name()
464 struct test_firmware_upload *tst; in config_upload_name_store() local
468 tst = upload_lookup_name(buf); in config_upload_name_store()
469 if (tst) in config_upload_name_store()
470 test_fw_config->upload_name = tst->name; in config_upload_name_store()
1103 static void upload_release(struct test_firmware_upload *tst) in upload_release() argument
1105 firmware_upload_unregister(tst->fwl); in upload_release()
[all …]
/linux-6.12.1/tools/testing/selftests/timens/
Dexec.c23 struct timespec now, tst; in main() local
32 _gettime(CLOCK_MONOTONIC, &tst, i); in main()
33 if (labs(tst.tv_sec - now.tv_sec) > 5) in main()
34 return pr_fail("%ld %ld\n", now.tv_sec, tst.tv_sec); in main()
52 _gettime(CLOCK_MONOTONIC, &tst, i); in main()
53 if (labs(tst.tv_sec - now.tv_sec) > 5) in main()
55 now.tv_sec, tst.tv_sec); in main()
72 _gettime(CLOCK_MONOTONIC, &tst, i); in main()
73 if (labs(tst.tv_sec - now.tv_sec - OFFSET) > 5) in main()
75 now.tv_sec + OFFSET, tst.tv_sec); in main()
Dvfork_exec.c30 struct timespec *now = args->now, tst; in tcheck() local
34 _gettime(CLOCK_MONOTONIC, &tst, i); in tcheck()
35 if (labs(tst.tv_sec - now->tv_sec) > 5) { in tcheck()
37 args->tst_name, tst.tv_sec, now->tv_sec); in tcheck()
62 struct timespec tst; in check() local
66 _gettime(CLOCK_MONOTONIC, &tst, i); in check()
67 if (labs(tst.tv_sec - now->tv_sec) > 5) in check()
69 tst_name, tst.tv_sec, now->tv_sec); in check()
/linux-6.12.1/arch/arm/lib/
Dcsumpartialcopygeneric.S33 tst dst, #1
40 tst dst, #2
59 tst dst, #1 @ dst 16-bit aligned
67 tst len, #6
77 tst len, #6
80 tst len, #1
95 tst dst, #3 @ Test destination alignment
104 tst src, #3 @ Test source alignment
124 tst ip, #8
130 tst ip, #4
[all …]
Dcsumpartial.S38 tst buf, #1 @ odd address?
44 .Lless4: tst len, #6
64 tst len, #6
67 .Lless8_byte: tst len, #1 @ odd number of bytes
73 tst td0, #1 @ check buffer alignment
77 .Lnot_aligned: tst buf, #1 @ odd address
82 tst buf, #2 @ 32-bit aligned?
104 tst buf, #1
108 tst buf, #3 @ Test destination alignment
130 3: tst len, #0x1c @ should not change C
[all …]
Dmemset.S55 tst r2, #32
58 tst r2, #16
90 tst r8, #(1 << 30)
100 tst r2, #32
102 tst r2, #16
110 4: tst r2, #8
112 tst r2, #4
118 5: tst r2, #2
121 tst r2, #1
Dio-readsw-armv3.S18 .Linsw_align: tst r1, #1
32 tst r1, #3
67 tst r2, #7
70 .Lno_insw_8: tst r2, #4
85 .Lno_insw_4: tst r2, #2
95 .Lno_insw_2: tst r2, #1
Dio-writesw-armv3.S18 .Loutsw_align: tst r1, #1
33 tst r1, #3
78 tst r2, #7
81 .Lno_outsw_8: tst r2, #4
102 .Lno_outsw_4: tst r2, #2
115 .Lno_outsw_2: tst r2, #1
/linux-6.12.1/arch/sh/lib/
Dstrlen.S16 tst r0,r0
27 tst r1,r1
32 tst r1,r1
37 tst r1,r1
56 tst r0,r0
61 tst r0,r0
66 tst r0,r0
/linux-6.12.1/drivers/misc/
Dkgdbts.c173 struct test_struct *tst; member
410 fill_get_buf(ts.tst[ts.idx].get); in skip_back_repeat_test()
725 if (ts.tst[ts.idx].put_handler) in validate_simple_test()
726 return ts.tst[ts.idx].put_handler(put_str, in validate_simple_test()
727 ts.tst[ts.idx].put); in validate_simple_test()
729 chk_str = ts.tst[ts.idx].put; in validate_simple_test()
766 if (ts.tst[ts.idx].get_handler) in run_simple_test()
767 ts.tst[ts.idx].get_handler(ts.tst[ts.idx].get); in run_simple_test()
769 fill_get_buf(ts.tst[ts.idx].get); in run_simple_test()
786 if (ts.tst[ts.idx].get[0] == '\0' && ts.tst[ts.idx].put[0] == '\0' && in run_simple_test()
[all …]
/linux-6.12.1/arch/arm64/lib/
Dmte.S34 tst x0, #(PAGE_SIZE - 1)
55 tst x0, #(PAGE_SIZE - 1)
60 tst x0, #(PAGE_SIZE - 1)
78 tst x2, #(PAGE_SIZE - 1)
147 tst x0, #0xFF // 16 tag values fit in a register,
152 tst x0, #(PAGE_SIZE - 1)
170 tst x0, #0xFF
173 tst x0, #(PAGE_SIZE - 1)
/linux-6.12.1/tools/testing/selftests/net/tcp_ao/
Dself-connect.c30 static void tcp_self_connect(const char *tst, unsigned int port, in tcp_self_connect() argument
74 test_fail("%s: tcp connection verify failed", tst); in tcp_self_connect()
91 tst, after_aogood, before_aogood); in tcp_self_connect()
96 if (test_tcp_ao_counters_cmp(tst, &before_ao, &after_ao, TEST_CNT_GOOD)) { in tcp_self_connect()
103 tst, before_aogood, after_aogood); in tcp_self_connect()
140 test_fail("%s: tcp connection verify failed", tst); in tcp_self_connect()
152 tst, after_aogood, before_aogood); in tcp_self_connect()
156 tst, before_aogood, after_aogood); in tcp_self_connect()
Dsetsockopt-closed.c22 const char *tst) in test_vefify_ao_info() argument
34 tst, (uint64_t)info->member, (uint64_t)tmp.member); \ in test_vefify_ao_info()
52 test_ok("AO info get: %s", tst); in test_vefify_ao_info()
58 int err, const char *tst, const char *tst2) in __setsockopt_checked() argument
62 if (!tst) in __setsockopt_checked()
63 tst = ""; in __setsockopt_checked()
74 test_ok("%s%s", tst ?: "", tst2 ?: ""); in __setsockopt_checked()
77 tst, tst2, get ? "g" : "s"); in __setsockopt_checked()
84 tst, tst2, get ? "g" : "s", err); in __setsockopt_checked()
86 test_ok("%s%s", tst ?: "", tst2 ?: ""); in __setsockopt_checked()
[all …]
/linux-6.12.1/arch/arm/include/debug/
Dicedcc.S22 tst \rx, #0x20000000
35 tst \rx, #0x20000000
49 tst \rx, #0x10000000
62 tst \rx, #0x10000000
76 tst \rx, #2
90 tst \rx, #2
Dsamsung.S21 tst \rd, #S5PV210_UFSTAT_TXFULL
40 tst \rd, #S3C2440_UFSTAT_TXFULL
54 tst \rd, #S3C2410_UFCON_FIFOMODE @ fifo enabled?
66 tst \rd, #S3C2410_UTRSTAT_TXFE
78 tst \rd, #S3C2410_UFCON_FIFOMODE @ fifo enabled?
90 tst \rd, #S3C2410_UTRSTAT_TXFE
Dsa1100.S19 tst \rp, #1 @ MMU enabled?
30 tst \rv, #UTCR3_TXE
59 tst \rd, #UTSR1_TNF
65 tst \rd, #UTSR1_TBY
/linux-6.12.1/arch/m68k/ifpsp060/src/
Ditest.S53 tst.l %d0
185 tst.b %d0
209 tst.b %d0
231 tst.b %d0
255 tst.b %d0
279 tst.b %d0
303 tst.b %d0
327 tst.b %d0
351 tst.b %d0
375 tst.b %d0
[all …]
Dftest.S69 tst.l %d0
269 tst.b %d0
273 tst.b %d0
309 tst.b %d0
313 tst.b %d0
346 tst.b %d0
350 tst.b %d0
382 tst.b %d0
386 tst.b %d0
419 tst.b %d0
[all …]
/linux-6.12.1/arch/arm/mm/
Dabort-lv4t.S19 tst r5, #PSR_T_BIT @ check for thumb mode
31 tst r8, #1 << 20 @ L = 1 -> write?
62 tst r8, #1 << 21 @ check writeback bit
79 tst r8, #1 << 23 @ Check U bit
87 tst r8, #1 << 21 @ Check writeback bit
92 tst r8, #1 << 22 @ if (immediate offset)
99 tst r8, #1 << 23 @ Check U bit
107 tst r8, #1 << 21 @ check writeback bit
115 tst r8, #1 << 23 @ Check U bit
123 tst r8, #1 << 21 @ check writeback bit
[all …]
Dproc-macros.S166 tst r1, #L_PTE_DIRTY|L_PTE_RDONLY
169 tst r1, #L_PTE_USER
176 tst r1, #L_PTE_XN
181 tst r1, #L_PTE_YOUNG
215 tst r3, #L_PTE_USER @ user?
218 tst r3, #L_PTE_RDONLY | L_PTE_DIRTY @ write and dirty?
221 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
226 tst r2, #PTE_CACHEABLE
257 tst r3, #L_PTE_USER @ user?
260 tst r3, #L_PTE_RDONLY | L_PTE_DIRTY @ write and dirty?
[all …]
Dproc-v7-2level.S83 tst r1, #1 << 4
87 tst r1, #L_PTE_RDONLY | L_PTE_DIRTY
90 tst r1, #L_PTE_USER
93 tst r1, #L_PTE_XN
96 tst r1, #L_PTE_YOUNG
/linux-6.12.1/arch/arm/kernel/
Drelocate_kernel.S30 tst r3,#1
36 tst r3,#2
43 tst r3,#4
49 tst r3,#8
/linux-6.12.1/arch/arm/mach-omap2/
Dsleep33xx.S40 tst r4, #WFI_FLAG_FLUSH_CACHE
72 tst r4, #WFI_FLAG_SELF_REFRESH
82 tst r4, #WFI_FLAG_SAVE_EMIF
90 tst r4, #WFI_FLAG_SELF_REFRESH
107 tst r4, #WFI_FLAG_WAKE_M3
175 tst r4, #WFI_FLAG_SELF_REFRESH
183 tst r4, #WFI_FLAG_FLUSH_CACHE
/linux-6.12.1/arch/arm/mach-imx/
Dssi-fiq.S49 tst r11, #SSI_SIER_TFE0_EN
54 tst r11, #SSI_SISR_TFE0
85 tst r11, #SSI_SIER_RFF0_EN
90 tst r11, #SSI_SISR_RFF0
102 tst r11, #SSI_SACNT_AC97EN
/linux-6.12.1/arch/sh/kernel/cpu/shmobile/
Dsleep.S50 tst #SUSP_SH_REGS, r0
97 tst #SUSP_SH_MMU, r0
148 tst #SUSP_SH_SF, r0
157 tst #SUSP_SH_STANDBY, r0
165 tst #SUSP_SH_RSTANDBY, r0
179 tst #SUSP_SH_USTANDBY, r0
284 tst #SUSP_SH_SF, r0
294 tst #SUSP_SH_MMU, r0
336 tst #SUSP_SH_REGS, r0

12345678