| /third_party/skia/platform_tools/android/bin/ |
| H A D | android_build_app | 22 target_cpu = "arm64" variable 31 m = re.match('target_cpu *= *"(.*)"', line.strip()) 33 target_cpu = m.group(1) variable 37 ':' + args.app_name + ':assemble' + target_cpu + android_buildtype, 39 '-P' + target_cpu + '.out.dir=' + os.path.abspath(args.output_dir)] 51 target_cpu, android_buildtype, 52 args.app_name + "-" + target_cpu + "-" + android_buildtype + ".apk")
|
| /third_party/gn/examples/ios/build/config/ios/scripts/ |
| H A D | sdk_info.py | 24 def GetAppleCpuName(target_cpu): 25 """Returns the name of the |target_cpu| using Apple's convention.""" 30 }.get(target_cpu, target_cpu) 83 def GetSDKInfoForCpu(target_cpu, environment, sdk_version, deployment_target): 89 target = target_cpu + '-apple-ios' + deployment_target 148 GetAppleCpuName(args.target_cpu), args.target_environment,
|
| /developtools/integration_verification/tools/deps_guard/ |
| H A D | deps_guard.py | 53 def _startup_guard_module(out_path, target_cpu, args):
64 startup_guard(out_path, target_cpu, args)
67 def deps_guard(out_path, target_cpu, args=None):
69 _startup_guard_module(out_path, target_cpu, args)
|
| /developtools/integration_verification/tools/startup_guard/ |
| H A D | startup_guard.py | 27 parser.add_argument('-c', '--target_cpu',
28 help='target_cpu cpu type" ', required=True)
35 def startup_guard(out_path, target_cpu ,args=None):
37 mgr.load_all_parser(out_path, target_cpu)
49 startup_guard(args.input, args.target_cpu, args)
|
| /developtools/integration_verification/tools/startup_guard/config_parser_mgr/ |
| H A D | config_parser_mgr.py | 32 parser.add_argument('-c', '--target_cpu', 33 help='target_cpu cpu type" ', required=True) 42 def load_all_parser(self, out_path, target_cpu): 43 cfg_parser = startup_config_collect(out_path, target_cpu) 56 mgr.load_all_parser(options.input, options.target_cpu)
|
| /base/startup/init/services/modules/seccomp/scripts/tools/ |
| H A D | collect_elf_syscall.py | 54 def generate_libc_asm(target_cpu, elf_path, locate_path):
55 if target_cpu == 'arm':
57 elif target_cpu == 'arm64':
59 elif target_cpu == 'riscv64':
285 if args.target_cpu == 'arm64':
287 elif args.target_cpu == 'arm':
289 elif args.target_cpu == 'riscv64':
292 libc_asm_path = generate_libc_asm(args.target_cpu, libc_path, '.')
295 libc_func_map = gen_libc.get_syscall_map(args.target_cpu, args.src_syscall_path, libc_asm_path)
323 content = get_item_content(args.target_cpu, syscall_nr_lis [all...] |
| H A D | strace_log_analysis.py | 75 content = get_item_content(args.target_cpu, func_name_set, function_name_nr_table_dict)
105 if args.target_cpu not in gen_policy.supported_architecture:
106 raise ValueError("target_cpu must int {}".format(gen_policy.supported_architecture))
|
| /kernel/linux/linux-6.6/tools/testing/selftests/kvm/aarch64/ |
| H A D | psci_test.c | 25 static uint64_t psci_cpu_on(uint64_t target_cpu, uint64_t entry_addr, in psci_cpu_on() argument 30 smccc_hvc(PSCI_0_2_FN64_CPU_ON, target_cpu, entry_addr, context_id, in psci_cpu_on() 116 static void guest_test_cpu_on(uint64_t target_cpu) in guest_test_cpu_on() argument 120 GUEST_ASSERT(!psci_cpu_on(target_cpu, CPU_ON_ENTRY_ADDR, CPU_ON_CONTEXT_ID)); in guest_test_cpu_on() 123 target_state = psci_affinity_info(target_cpu, 0); in guest_test_cpu_on()
|
| /third_party/node/deps/v8/tools/v8windbg/ |
| H A D | copy-prereqs.py | 18 vs_toolchain_dir, target_dir, target_cpu = sys.argv[1:] 28 full_path = os.path.join(win_sdk_dir, 'Debuggers', target_cpu, debug_file)
|
| /foundation/arkui/napi/jsvm/ |
| H A D | build_jsvm.sh | 27 options="$(getopt -o h "help,sysroot:,node_path:,prefix:,target_cpu:,base_path:" -- "$@")" || usage 37 echo "--target_cpu <arm/arm64> Cross-compile CPU types." 83 --target_cpu)
|
| /kernel/linux/linux-5.10/tools/perf/scripts/perl/ |
| H A D | wakeup-latency.pl | 55 $comm, $pid, $prio, $success, $target_cpu) = @_; 57 $last_wakeup{$target_cpu}{ts} = nsecs($common_secs, $common_nsecs);
|
| /kernel/linux/linux-6.6/tools/perf/scripts/perl/ |
| H A D | wakeup-latency.pl | 55 $comm, $pid, $prio, $success, $target_cpu) = @_; 57 $last_wakeup{$target_cpu}{ts} = nsecs($common_secs, $common_nsecs);
|
| /device/soc/rockchip/common/vendor/drivers/rockchip/ |
| H A D | rk_fiq_debugger.c | 482 unsigned int target_cpu;
in fiq_dbg_sdei_cpu_off_migrate_fiq() local 486 target_cpu = cpumask_first(cpu_online_mask);
in fiq_dbg_sdei_cpu_off_migrate_fiq() 487 _rk_fiq_dbg_sdei_switch_cpu(target_cpu, 1);
in fiq_dbg_sdei_cpu_off_migrate_fiq() 494 pr_err("%s: from %d to %d err!\n", __func__, cpu, target_cpu);
in fiq_dbg_sdei_cpu_off_migrate_fiq() 503 unsigned int target_cpu;
in fiq_dbg_sdei_pm_callback() local 507 target_cpu = cpumask_first(cpu_online_mask);
in fiq_dbg_sdei_pm_callback() 508 if (target_cpu != 0) {
in fiq_dbg_sdei_pm_callback() 511 _rk_fiq_dbg_sdei_switch_cpu(target_cpu, 1);
in fiq_dbg_sdei_pm_callback() 664 unsigned int target_cpu;
in fiq_debugger_cpu_offine_migrate_fiq() local 667 target_cpu in fiq_debugger_cpu_offine_migrate_fiq() [all...] |
| /device/soc/rockchip/rk3588/kernel/drivers/soc/rockchip/ |
| H A D | rk_fiq_debugger.c | 482 unsigned int target_cpu; in fiq_dbg_sdei_cpu_off_migrate_fiq() local 486 target_cpu = cpumask_first(cpu_online_mask); in fiq_dbg_sdei_cpu_off_migrate_fiq() 487 _rk_fiq_dbg_sdei_switch_cpu(target_cpu, 1); in fiq_dbg_sdei_cpu_off_migrate_fiq() 495 __func__, cpu, target_cpu); in fiq_dbg_sdei_cpu_off_migrate_fiq() 504 unsigned int target_cpu; in fiq_dbg_sdei_pm_callback() local 508 target_cpu = cpumask_first(cpu_online_mask); in fiq_dbg_sdei_pm_callback() 509 if (target_cpu != 0) in fiq_dbg_sdei_pm_callback() 512 _rk_fiq_dbg_sdei_switch_cpu(target_cpu, 1); in fiq_dbg_sdei_pm_callback() 684 unsigned int target_cpu; in fiq_debugger_cpu_offine_migrate_fiq() local 688 target_cpu in fiq_debugger_cpu_offine_migrate_fiq() [all...] |
| /kernel/linux/linux-6.6/drivers/hv/ |
| H A D | channel_mgmt.c | 464 hv_clear_allocated_cpu(channel->target_cpu); in hv_process_channel_removal() 596 * STORE target_cpu LOAD target_cpu in vmbus_process_offer() 707 if (primary->target_cpu == cpu) in hv_cpuself_used() 711 if (sc != chn && sc->target_cpu == cpu) in hv_cpuself_used() 738 u32 target_cpu; in init_vp_index() local 752 channel->target_cpu = VMBUS_CONNECT_CPU; in init_vp_index() 784 target_cpu = cpumask_first(available_mask); in init_vp_index() 785 cpumask_set_cpu(target_cpu, allocated_mask); in init_vp_index() 788 i > ncpu || !hv_cpuself_used(target_cpu, channe in init_vp_index() [all...] |
| H A D | vmbus_drv.c | 202 return sprintf(buf, "%d\n", cpu_to_node(hv_dev->channel->target_cpu)); in numa_node_show() 492 channel->offermsg.child_relid, channel->target_cpu); in channel_vp_mapping_show() 503 cur_sc->target_cpu); in channel_vp_mapping_show() 1594 return sprintf(buf, "%u\n", channel->target_cpu); in target_cpu_show() 1599 u32 target_cpu, origin_cpu; in target_cpu_store() local 1605 if (sscanf(buf, "%uu", &target_cpu) != 1) in target_cpu_store() 1608 /* Validate target_cpu for the cpumask_test_cpu() operation below. */ in target_cpu_store() 1609 if (target_cpu >= nr_cpumask_bits) in target_cpu_store() 1612 if (!cpumask_test_cpu(target_cpu, housekeeping_cpumask(HK_TYPE_MANAGED_IRQ))) in target_cpu_store() 1618 if (!cpu_online(target_cpu)) { in target_cpu_store() [all...] |
| /kernel/linux/linux-5.10/tools/perf/scripts/python/ |
| H A D | sched-migration.py | 355 def wake_up(self, headers, comm, pid, success, target_cpu, fork): 359 ts.wake_up(self.timeslices, pid, target_cpu, fork) 433 target_cpu): 436 parser.wake_up(headers, comm, pid, success, target_cpu, 1) 441 target_cpu): 444 parser.wake_up(headers, comm, pid, success, target_cpu, 0)
|
| /kernel/linux/linux-6.6/tools/perf/scripts/python/ |
| H A D | sched-migration.py | 355 def wake_up(self, headers, comm, pid, success, target_cpu, fork): 359 ts.wake_up(self.timeslices, pid, target_cpu, fork) 433 target_cpu): 436 parser.wake_up(headers, comm, pid, success, target_cpu, 1) 441 target_cpu): 444 parser.wake_up(headers, comm, pid, success, target_cpu, 0)
|
| /kernel/linux/linux-5.10/arch/sparc/kernel/ |
| H A D | sun4d_irq.c | 487 int target_cpu; in sun4d_init_sbi_irq() local 489 target_cpu = boot_cpu_id; in sun4d_init_sbi_irq() 495 set_sbi_tid(devid, target_cpu << 3); in sun4d_init_sbi_irq() 496 board_to_cpu[board] = target_cpu; in sun4d_init_sbi_irq()
|
| /kernel/linux/linux-6.6/arch/sparc/kernel/ |
| H A D | sun4d_irq.c | 487 int target_cpu; in sun4d_init_sbi_irq() local 489 target_cpu = boot_cpu_id; in sun4d_init_sbi_irq() 495 set_sbi_tid(devid, target_cpu << 3); in sun4d_init_sbi_irq() 496 board_to_cpu[board] = target_cpu; in sun4d_init_sbi_irq()
|
| /kernel/linux/linux-6.6/drivers/irqchip/ |
| H A D | irq-apple-aic.c | 244 u32 target_cpu; member 261 .target_cpu = AIC_TARGET_CPU, 268 .target_cpu = AIC_TARGET_CPU, 413 BUG_ON(!ic->info.target_cpu); in aic_irq_set_affinity() 420 aic_ic_write(ic, ic->info.target_cpu + AIC_HWIRQ_IRQ(hwirq) * 4, BIT(cpu)); in aic_irq_set_affinity() 951 off = start_off = irqc->info.target_cpu; in aic_of_ic_init() 1025 if (irqc->info.target_cpu) in aic_of_ic_init() 1027 aic_ic_write(irqc, irqc->info.target_cpu + off + i * 4, 1); in aic_of_ic_init()
|
| /third_party/gn/src/gn/ |
| H A D | function_set_default_toolchain.cc | 47 if (target_cpu == "x64") { 49 } else if (target_cpu == "x86") {
|
| /kernel/linux/linux-5.10/drivers/hv/ |
| H A D | vmbus_drv.c | 237 return sprintf(buf, "%d\n", cpu_to_node(hv_dev->channel->target_cpu)); in numa_node_show() 527 channel->offermsg.child_relid, channel->target_cpu); in channel_vp_mapping_show() 538 cur_sc->target_cpu); in channel_vp_mapping_show() 1707 return sprintf(buf, "%u\n", channel->target_cpu); in target_cpu_show() 1712 u32 target_cpu, origin_cpu; in target_cpu_store() local 1718 if (sscanf(buf, "%uu", &target_cpu) != 1) in target_cpu_store() 1721 /* Validate target_cpu for the cpumask_test_cpu() operation below. */ in target_cpu_store() 1722 if (target_cpu >= nr_cpumask_bits) in target_cpu_store() 1728 if (!cpu_online(target_cpu)) { in target_cpu_store() 1766 origin_cpu = channel->target_cpu; in target_cpu_store() [all...] |
| H A D | channel_mgmt.c | 432 hv_clear_alloced_cpu(channel->target_cpu); in hv_process_channel_removal() 564 * STORE target_cpu LOAD target_cpu in vmbus_process_offer() 682 u32 target_cpu; in init_vp_index() local 696 channel->target_cpu = VMBUS_CONNECT_CPU; in init_vp_index() 725 target_cpu = cpumask_first(available_mask); in init_vp_index() 726 cpumask_set_cpu(target_cpu, alloced_mask); in init_vp_index() 728 channel->target_cpu = target_cpu; in init_vp_index()
|
| /base/startup/init/services/modules/seccomp/scripts/ |
| H A D | generate_code_from_policy.py | 855 def update_arch(self, target_cpu): 856 if target_cpu == "arm": 857 self.arches.add(target_cpu) 858 elif target_cpu == "arm64": 860 self.arches.add(target_cpu) 861 elif target_cpu == "riscv64": 862 self.arches.add(target_cpu) 1004 if args.target_cpu not in supported_architecture: 1022 self.update_arch(args.target_cpu)
|