| /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")
|
| H A D | android_build_universal_viewer | 10 target_cpu = "$ARCH"
|
| /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,
|
| /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))
|
| H A D | libc_static_analysis.py | 272 get_syscall_map(args.target_cpu, args.src_syscall_path, args.libc_asm_path)
|
| /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)
|
| /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...] |
| /test/testfwk/developer_test/local_coverage/ |
| H A D | utils.py | 77 target_cpu = json_obj["target_cpu"] 78 return target_cpu
|
| /third_party/gn/src/gn/ |
| H A D | function_set_default_toolchain.cc | 47 if (target_cpu == "x64") { 49 } else if (target_cpu == "x86") {
|
| H A D | command_args.cc | 485 gn args out/Debug --list=target_cpu 486 Prints information about the "target_cpu" argument for the "
|
| /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)
|
| /test/testfwk/developer_test/src/core/ |
| H A D | utils.py | 177 target_cpu = para_dic.get("target_cpu", "")
178 if target_cpu == "arm":
|
| /device/soc/rockchip/common/sdk_linux/kernel/sched/ |
| H A D | rt.c | 1539 int target_cpu = -1; in select_task_rq_rt() local 1818 int target_cpu = -1; in find_cas_cpu() local 1920 trace_sched_find_cas_cpu_each(task, cpu, target_cpu, cpu_isolated(cpu), idle_cpu(cpu), boosted_tutil, in find_cas_cpu() 1932 if (target_cpu != -1 && capacity_orig_of(cpu) > capacity_orig_of(target_cpu)) { in find_cas_cpu() 1944 * target_cpu in find_cas_cpu() 1946 if (target_cpu_util == util && target_cpu == prev_cpu) { in find_cas_cpu() 1956 target_cpu = cpu; in find_cas_cpu() 1959 if (target_cpu != -1 && cpumask_test_cpu(target_cpu, lowest_mas in find_cas_cpu() [all...] |
| /test/testfwk/developer_test/local_coverage/interface_coverage/ |
| H A D | get_innerkits_json.py | 34 def gen_parts_info_json(folder_list, output_json_path, target_cpu): 41 data_dict[folder_str] = f"innerkits/ohos-{target_cpu}/{folder_str}"
|
| /device/soc/rockchip/common/sdk_linux/include/linux/rockchip/ |
| H A D | rockchip_sip.h | 176 int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu, u32 flag); 289 static inline int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu, u32 flag) in sip_fiq_debugger_sdei_switch_cpu() argument
|
| /device/soc/rockchip/rk3588/kernel/include/linux/rockchip/ |
| H A D | rockchip_sip.h | 177 int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu, u32 flag); 269 static inline int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu, in sip_fiq_debugger_sdei_switch_cpu() argument
|
| /device/soc/rockchip/common/vendor/drivers/firmware/ |
| H A D | rockchip_sip.c | 447 int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu, u32 flag) in sip_fiq_debugger_sdei_switch_cpu() argument 451 res = invoke_sip_fn_smc(SIP_SDEI_FIQ_DBG_SWITCH_CPU, cur_cpu, target_cpu, flag); in sip_fiq_debugger_sdei_switch_cpu()
|
| /device/soc/rockchip/rk3588/kernel/drivers/firmware/ |
| H A D | rockchip_sip.c | 455 int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu, u32 flag) in sip_fiq_debugger_sdei_switch_cpu() argument 460 cur_cpu, target_cpu, flag); in sip_fiq_debugger_sdei_switch_cpu()
|
| /device/soc/rockchip/common/sdk_linux/include/trace/events/ |
| H A D | sched.h | 58 __field(int, success) __field(int, target_cpu)),
63 __entry->target_cpu = task_cpu(p);),
65 TP_printk("comm=%s pid=%d prio=%d target_cpu=%03d", __entry->comm, __entry->pid, __entry->prio,
66 __entry->target_cpu));
|
| /third_party/gn/misc/vim/syntax/ |
| H A D | gn.vim | 22 syn keyword gnPredefVar target_cpu target_gen_dir target_out_dir
|
| /base/hiviewdfx/hitrace/tools/hitrace_converter/ |
| H A D | parse_functions.py | 58 target_cpu = parse_int_field(one_event, "target_cpu", True)
60 return "comm=%s pid=%d prio=%d target_cpu=%03d" % (pname, pid, prio, target_cpu)
68 target_cpu = parse_int_field(one_event, "target_cpu", True)
70 return "comm=%s pid=%d prio=%d target_cpu=%03d" % (comm, pid, prio, target_cpu)
728 PRINT_FMT_SCHED_WAKEUP_HM = '"comm=%s pid=%d prio=%d target_cpu=%03d", REC->pname, REC->pid, REC->prio, REC->target_cpu'
[all...] |
| /base/hiviewdfx/hiview/build/ |
| H A D | gen_plugin_build.py | 354 parser.add_argument('--target_cpu', help='arm or arm64', required=True) 373 args.target_cpu,
|