/kernel/linux/linux-6.6/arch/parisc/net/ |
H A D | bpf_jit_comp64.c | 505 static void emit_call_libgcc_ll(void *func, const s8 arg0, in emit_call_libgcc_ll() argument 511 emit_hppa64_zext32(arg0, HPPA_REG_ARG0, ctx); in emit_call_libgcc_ll() 514 emit_hppa_copy(arg0, HPPA_REG_ARG0, ctx); in emit_call_libgcc_ll() 519 if (arg0 != HPPA_REG_RET0) { in emit_call_libgcc_ll() 529 emit_imm(HPPA_REG_R31, func_addr, arg0, ctx); in emit_call_libgcc_ll() 547 emit_hppa_copy(HPPA_REG_RET0, arg0, ctx); in emit_call_libgcc_ll() 550 if (arg0 != HPPA_REG_RET0) in emit_call_libgcc_ll()
|
/kernel/linux/linux-6.6/drivers/firmware/xilinx/ |
H A D | zynqmp.c | 109 static noinline int do_fw_call_fail(u64 arg0, u64 arg1, u64 arg2, in do_fw_call_fail() argument 123 * @arg0: Argument 0 to SMC call 132 static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, in do_fw_call_smc() argument 137 arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); in do_fw_call_smc() 151 * @arg0: Argument 0 to HVC call 162 static noinline int do_fw_call_hvc(u64 arg0, u64 arg1, u64 arg2, in do_fw_call_hvc() argument 167 arm_smccc_hvc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); in do_fw_call_hvc() 298 * @arg0: Argument 0 to requested PM-API call 319 int zynqmp_pm_invoke_fn(u32 pm_api_id, u32 arg0, u32 arg1, in zynqmp_pm_invoke_fn() argument 335 smc_arg[1] = ((u64)arg1 << 32) | arg0; in zynqmp_pm_invoke_fn() [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-omap1/ |
H A D | pm.c | 210 unsigned long arg0 = 0, arg1 = 0; in omap1_pm_suspend() local 329 arg0 = arm_sleep_save[ARM_SLEEP_SAVE_ARM_IDLECT1]; in omap1_pm_suspend() 338 omap_sram_suspend(arg0, arg1); in omap1_pm_suspend()
|
/kernel/linux/linux-5.10/drivers/platform/x86/ |
H A D | surface3_power.c | 97 u8 arg0; member 410 if (gsb->cmd.arg0 == MSHW0011_CMD_DEST_ADP1 && in mshw0011_space_handler() 422 if (gsb->cmd.arg0 != MSHW0011_CMD_DEST_BAT0) { in mshw0011_space_handler()
|
/kernel/linux/linux-6.6/drivers/platform/surface/ |
H A D | surface3_power.c | 97 u8 arg0; member 403 if (gsb->cmd.arg0 == MSHW0011_CMD_DEST_ADP1 && in mshw0011_space_handler() 415 if (gsb->cmd.arg0 != MSHW0011_CMD_DEST_BAT0) { in mshw0011_space_handler()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_tgsi.h | 712 LLVMValueRef arg0); 718 LLVMValueRef arg0, 725 LLVMValueRef arg0,
|
/kernel/linux/linux-5.10/arch/riscv/include/asm/ |
H A D | sbi.h | 93 struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0,
|
/third_party/typescript/tests/baselines/reference/ |
H A D | jsDeclarationsEnumTag.js | 126 export type Fs = (arg0: number) => number;
|
/kernel/linux/linux-5.10/arch/riscv/kernel/ |
H A D | sbi.c | 23 struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0, in sbi_ecall() argument 30 register uintptr_t a0 asm ("a0") = (uintptr_t)(arg0); in sbi_ecall()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_test_arit.c | 352 LLVMValueRef arg0 = LLVMGetParam(func, 0); in build_unary_test_func() local 370 LLVMBuildStore(builder, ret, arg0); in build_unary_test_func()
|
/kernel/linux/linux-5.10/arch/parisc/kernel/ |
H A D | firmware.c | 1706 unsigned int arg0; member 1721 real_stack.arg0 = va_arg(args, unsigned int); in real32_call() 1737 return real32_call_asm(&real_stack.sp, &real_stack.arg0, fn); in real32_call() 1744 unsigned long arg0; member 1772 real64_stack.arg0 = va_arg(args, unsigned long); in real64_call() 1788 return real64_call_asm(&real64_stack.sp, &real64_stack.arg0, fn); in real64_call()
|
/kernel/linux/linux-6.6/arch/parisc/kernel/ |
H A D | firmware.c | 1846 unsigned int arg0; member 1861 real_stack.arg0 = va_arg(args, unsigned int); in real32_call() 1877 return real32_call_asm(&real_stack.sp, &real_stack.arg0, fn); in real32_call() 1884 unsigned long arg0; member 1912 real64_stack.arg0 = va_arg(args, unsigned long); in real64_call() 1928 return real64_call_asm(&real64_stack.sp, &real64_stack.arg0, fn); in real64_call()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/ |
H A D | nouveau_chan.c | 511 u32 arg0, u32 arg1, bool priv, in nouveau_channel_new() 522 ret = nouveau_channel_ind(drm, device, arg0, priv, pchan); in nouveau_channel_new() 532 ret = nouveau_channel_init(*pchan, arg0, arg1); in nouveau_channel_new() 510 nouveau_channel_new(struct nouveau_drm *drm, struct nvif_device *device, u32 arg0, u32 arg1, bool priv, struct nouveau_channel **pchan) nouveau_channel_new() argument
|
/third_party/libunwind/libunwind/tests/ |
H A D | ia64-test-nat-asm.S | 28 #define CALL_NEXT_PTR(gp_save_reg, arg0, arg1) \ 29 ld8 r2 = [arg0], 8;; /* read the next function pointer */ \ 34 mov out0 = arg0; \
|
/third_party/node/src/ |
H A D | node_serdes.cc | 252 Maybe<uint32_t> arg0 = args[0]->Uint32Value(ctx->env()->context()); in WriteUint64() local 254 if (arg0.IsNothing() || arg1.IsNothing()) in WriteUint64() 257 uint64_t hi = arg0.FromJust(); in WriteUint64()
|
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/include/riscv/ |
H A D | processor.h | 117 struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0,
|
/kernel/liteos_a/arch/arm/arm/src/ |
H A D | los_hw.c | 57 VOID OsTaskEntrySetupLoopFrame(UINT32 arg0) in OsTaskEntrySetupLoopFrame() argument
|
/third_party/python/Python/ |
H A D | initconfig.c | 2695 wchar_t *arg0 = NULL; in config_update_argv() local 2698 arg0 = L"-c"; in config_update_argv() 2702 arg0 = L"-m"; in config_update_argv() 2705 if (arg0 != NULL) { in config_update_argv() 2706 arg0 = _PyMem_RawWcsdup(arg0); in config_update_argv() 2707 if (arg0 == NULL) { in config_update_argv() 2713 config_argv.items[0] = arg0; in config_update_argv()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-js.cc | 183 i::Handle<i::Object> arg0 = Utils::OpenHandle(*args[0]); \ 184 if (!arg0->IsWasm##Type##Object()) { \ 188 return i::Handle<i::Wasm##Type##Object>::cast(arg0); \ 239 i::Handle<i::Object> arg0 = Utils::OpenHandle(*args[0]); in GetFirstArgumentAsJSFunction() local 240 if (!arg0->IsJSFunction()) { in GetFirstArgumentAsJSFunction() 244 return i::Handle<i::JSFunction>::cast(arg0); in GetFirstArgumentAsJSFunction() 1758 i::Handle<i::Object> arg0 = Utils::OpenHandle(*args[0]); in WebAssemblyException() local 1759 if (!i::HeapObject::cast(*arg0).IsWasmTagObject()) { in WebAssemblyException() 1764 i::Handle<i::WasmTagObject>::cast(arg0); in WebAssemblyException() 1914 i::Handle<i::Object> arg0 in WebAssemblyFunctionType() local 2617 i::Handle<i::Object> arg0 = Utils::OpenHandle(*args[0]); WebAssemblySuspenderSuspendOnReturnedPromise() local [all...] |
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativeS390X.c | 1891 sljit_gpr arg0 = gpr(SLJIT_R0); in sljit_emit_op0() local 1905 FAIL_IF(push_inst(compiler, mlgr(arg0, arg0))); in sljit_emit_op0() 1910 FAIL_IF(push_inst(compiler, srag(tmp0, arg0, 63, 0))); in sljit_emit_op0() 1913 FAIL_IF(push_inst(compiler, ngr(tmp1, arg0))); in sljit_emit_op0() 1916 FAIL_IF(push_inst(compiler, mlgr(arg0, arg0))); in sljit_emit_op0() 1918 FAIL_IF(push_inst(compiler, sgr(arg0, tmp0))); in sljit_emit_op0() 1919 FAIL_IF(push_inst(compiler, sgr(arg0, tmp1))); in sljit_emit_op0() 1924 FAIL_IF(push_inst(compiler, lr(tmp1, arg0))); in sljit_emit_op0() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | PluralRules.java | 898 public boolean equals(Object arg0) { in equals() argument 899 if (arg0 == null) { in equals() 902 if (arg0 == this) { in equals() 905 if (!(arg0 instanceof FixedDecimal)) { in equals() 908 FixedDecimal other = (FixedDecimal)arg0; in equals()
|
/kernel/linux/linux-6.6/drivers/platform/x86/ |
H A D | asus-wmi.c | 145 u32 arg0; member 305 u32 arg0, u32 arg1, u32 arg2, u32 *retval) in asus_wmi_evaluate_method3() 308 .arg0 = arg0, in asus_wmi_evaluate_method3() 339 int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1, u32 *retval) in asus_wmi_evaluate_method() argument 341 return asus_wmi_evaluate_method3(method_id, arg0, arg1, 0, retval); in asus_wmi_evaluate_method() 346 u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4, u32 *retval) in asus_wmi_evaluate_method5() 349 .arg0 = arg0, in asus_wmi_evaluate_method5() 387 u32 arg0, u3 in asus_wmi_evaluate_method_buf() 304 asus_wmi_evaluate_method3(u32 method_id, u32 arg0, u32 arg1, u32 arg2, u32 *retval) asus_wmi_evaluate_method3() argument 345 asus_wmi_evaluate_method5(u32 method_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4, u32 *retval) asus_wmi_evaluate_method5() argument 386 asus_wmi_evaluate_method_buf(u32 method_id, u32 arg0, u32 arg1, u8 *ret_buffer, size_t size) asus_wmi_evaluate_method_buf() argument [all...] |
/kernel/linux/linux-5.10/arch/sh/kernel/ |
H A D | entry-common.S | 380 mov.l @(OFF_R4,r15), r4 ! arg0
|
/kernel/linux/linux-6.6/arch/riscv/include/asm/ |
H A D | sbi.h | 262 struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0,
|
/kernel/linux/linux-6.6/arch/sh/kernel/ |
H A D | entry-common.S | 380 mov.l @(OFF_R4,r15), r4 ! arg0
|