/kernel/linux/linux-6.6/arch/arm64/kvm/hyp/nvhe/ |
H A D | psci-relay.c | 64 unsigned long arg1, unsigned long arg2) in psci_call() 68 arm_smccc_1_1_smc(fn, arg0, arg1, arg2, &res); in psci_call() 63 psci_call(unsigned long fn, unsigned long arg0, unsigned long arg1, unsigned long arg2) psci_call() argument
|
/kernel/linux/linux-6.6/arch/s390/include/asm/ |
H A D | stacktrace.h | 101 long arg2 = (long)(t2)(a2) 118 register long r3 asm("3") = arg2
|
/kernel/linux/linux-5.10/fs/ |
H A D | filesystems.c | 191 SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2) in SYSCALL_DEFINE3() 201 retval = fs_name(arg1, (char __user *) arg2); in SYSCALL_DEFINE3()
|
/kernel/linux/linux-6.6/fs/ |
H A D | filesystems.c | 191 SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2) in SYSCALL_DEFINE3() 201 retval = fs_name(arg1, (char __user *) arg2); in SYSCALL_DEFINE3()
|
/kernel/linux/linux-6.6/arch/x86/kernel/ |
H A D | process_32.c | 220 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2) in SYSCALL_DEFINE2() 222 return do_arch_prctl_common(option, arg2); in SYSCALL_DEFINE2()
|
/kernel/uniproton/src/core/kernel/timer/swtmr/ |
H A D | prt_swtmr_init.c | 110 swtmr->arg2 = createPara->arg2; in OsSwTmrCreateTimerCbInit()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | assignmentCompatWithCallSignatures4.js | 14 var a8: (x: (arg: Base) => Derived, y: (arg2: Base) => Derived) => (r: Base) => Derived; 52 var b8: <T extends Base, U extends Derived>(x: (arg: T) => U, y: (arg2: { foo: number; }) => U) => (r: T) => U;
|
H A D | assignmentCompatWithConstructSignatures4.js | 14 var a8: new (x: (arg: Base) => Derived, y: (arg2: Base) => Derived) => (r: Base) => Derived; 52 var b8: new <T extends Base, U extends Derived>(x: (arg: T) => U, y: (arg2: { foo: number; }) => U) => (r: T) => U;
|
H A D | callSignatureAssignabilityInInheritance3.js | 16 a8: (x: (arg: Base) => Derived, y: (arg2: Base) => Derived) => (r: Base) => Derived; 62 a8: <T extends Base, U extends Derived>(x: (arg: T) => U, y: (arg2: { foo: number; }) => U) => (r: T) => U; // error, type mismatch
|
H A D | constructSignatureAssignabilityInInheritance3.js | 16 a8: new (x: (arg: Base) => Derived, y: (arg2: Base) => Derived) => (r: Base) => Derived; 52 a8: new <T extends Base, U extends Derived>(x: (arg: T) => U, y: (arg2: { foo: number; }) => U) => (r: T) => U; // error, type mismatch
|
/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 125 * @arg2: Argument 2 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() 153 * @arg2: Argument 2 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() 300 * @arg2: Argument 2 to requested PM-API call 320 u32 arg2, u32 arg3, u32 *ret_payload) in zynqmp_pm_invoke_fn() 336 smc_arg[2] = ((u64)arg3 << 32) | arg2; in zynqmp_pm_invoke_fn() 319 zynqmp_pm_invoke_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 *ret_payload) zynqmp_pm_invoke_fn() argument [all...] |
/third_party/mesa3d/include/CL/ |
H A D | cl.hpp | 7656 T2 arg2, in operator ()() 7691 arg2, in operator ()() 7881 T2 arg2, in operator ()() 7915 arg2, in operator ()() 8102 T2 arg2, in operator ()() 8135 arg2, in operator ()() 8319 T2 arg2, in operator ()() 8351 arg2, in operator ()() 8532 T2 arg2, in operator ()() 8563 arg2, in operator ()() [all...] |
/kernel/linux/linux-5.10/tools/perf/util/scripting-engines/ |
H A D | trace-event-python.c | 58 #define _PyUnicode_FromStringAndSize(arg1, arg2) \ 59 PyString_FromStringAndSize((arg1), (arg2)) 60 #define _PyBytes_FromStringAndSize(arg1, arg2) \ 61 PyString_FromStringAndSize((arg1), (arg2)) 66 #define _PyCapsule_New(arg1, arg2, arg3) \ 67 PyCObject_FromVoidPtr((arg1), (arg2)) 73 #define _PyUnicode_FromStringAndSize(arg1, arg2) \ 74 PyUnicode_FromStringAndSize((arg1), (arg2)) 75 #define _PyBytes_FromStringAndSize(arg1, arg2) \ 76 PyBytes_FromStringAndSize((arg1), (arg2)) [all...] |
/kernel/linux/linux-6.6/tools/perf/util/scripting-engines/ |
H A D | trace-event-python.c | 63 #define _PyUnicode_FromStringAndSize(arg1, arg2) \ 64 PyString_FromStringAndSize((arg1), (arg2)) 65 #define _PyBytes_FromStringAndSize(arg1, arg2) \ 66 PyString_FromStringAndSize((arg1), (arg2)) 71 #define _PyCapsule_New(arg1, arg2, arg3) \ 72 PyCObject_FromVoidPtr((arg1), (arg2)) 78 #define _PyUnicode_FromStringAndSize(arg1, arg2) \ 79 PyUnicode_FromStringAndSize((arg1), (arg2)) 80 #define _PyBytes_FromStringAndSize(arg1, arg2) \ 81 PyBytes_FromStringAndSize((arg1), (arg2)) [all...] |
/foundation/communication/dsoftbus/core/common/include/ |
H A D | message_handler.h | 51 uint64_t arg2; member
|
/foundation/communication/nfc/interfaces/inner_api/common/ |
H A D | infc_controller_service.h | 66 virtual KITS::ErrorCode NotifyEventStatus(int eventType, int arg1, std::string arg2) = 0;
|
/foundation/communication/nfc/interfaces/inner_api/controller/ |
H A D | nfc_controller_proxy.h | 50 KITS::ErrorCode NotifyEventStatus(int eventType, int arg1, std::string arg2) override;
|
/kernel/linux/linux-6.6/arch/arm64/include/asm/ |
H A D | kexec.h | 101 unsigned long arg2);
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
H A D | test_core_extern.c | 11 static int (*bpf_missing_helper)(const void *arg1, int arg2) = (void *) 999;
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | test_core_extern.c | 11 static int (*bpf_missing_helper)(const void *arg1, int arg2) = (void *) 999;
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | txt_db.h | 46 long arg2; member
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bss_null.c | 19 static long null_ctrl(BIO *h, int cmd, long arg1, void *arg2);
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | vector.rs | 44 pub fn foo(arg1: __m128i, arg2: __m128d) -> __m128; in foo()
|
/third_party/openssl/include/openssl/ |
H A D | txt_db.h | 46 long arg2; member
|
/third_party/openssl/crypto/bio/ |
H A D | bss_null.c | 19 static long null_ctrl(BIO *h, int cmd, long arg1, void *arg2);
|