Searched refs:params (Results 1 – 4 of 4) sorted by relevance
/kvm-unit-tests/riscv/ |
H A D | sbi.c | 617 unsigned long params[] = { in hart_non_retentive_suspend() local 623 virt_to_phys(&sbi_hsm_check_non_retentive_suspend), virt_to_phys(params), in hart_non_retentive_suspend() 639 unsigned long params[] = { in hart_non_retentive_suspend_with_msb_set() local 645 virt_to_phys(&sbi_hsm_check_non_retentive_suspend), virt_to_phys(params), in hart_non_retentive_suspend_with_msb_set() 1296 static bool susp_basic_prep(unsigned long ctx[], struct susp_params *params) in susp_basic_prep() argument 1310 memset(params, 0, sizeof(*params)); in susp_basic_prep() 1311 params->sleep_type = 0; /* suspend-to-ram */ in susp_basic_prep() 1312 params->resume_addr = virt_to_phys(sbi_susp_resume); in susp_basic_prep() 1313 params->opaque = virt_to_phys(ctx); in susp_basic_prep() 1314 params->returns = false; in susp_basic_prep() [all …]
|
H A D | sbi-sse.c | 366 struct alias_test_params params[] = { in test_alias() local 374 for (w = 0; w < ARRAY_SIZE(params); w++) { in test_alias() 375 write = ¶ms[w]; in test_alias() 383 for (r = 0; r < ARRAY_SIZE(params); r++) { in test_alias() 384 read = ¶ms[r]; in test_alias()
|
/kvm-unit-tests/lib/powerpc/ |
H A D | setup.c | 52 struct cpu_set_params *params = info; in cpu_set() local 84 params->icache_bytes = fdt32_to_cpu(*data); in cpu_set() 90 params->dcache_bytes = fdt32_to_cpu(*data); in cpu_set() 96 params->tb_hz = fdt32_to_cpu(*data); in cpu_set() 113 struct cpu_set_params params; in cpu_init_params() local 117 ret = dt_for_each_cpu_node(cpu_set, ¶ms); in cpu_init_params() 119 __icache_bytes = params.icache_bytes; in cpu_init_params() 120 __dcache_bytes = params.dcache_bytes; in cpu_init_params() 121 tb_hz = params.tb_hz; in cpu_init_params()
|
/kvm-unit-tests/scripts/ |
H A D | checkpatch.pl | 6796 my $params = ''; 6797 $params = $2 if defined($2); 6802 if ($curr_attr eq "format" && $params) { 6803 $params =~ /^\s*\(\s*(\w+)\s*,\s*(.*)/; 6806 $new = "$new$params"; 6809 "Prefer $new over __attribute__(($orig_attr$params))\n" . $herecurr) && 6811 my $remove = "\Q$orig_attr\E" . '\s*' . "\Q$params\E" . '(?:\s*,\s*)?';
|