/openbmc/qemu/bsd-user/freebsd/ |
H A D | os-syscall.c | 217 static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1, in freebsd_syscall() argument 237 ret = do_freebsd_rfork(cpu_env, arg1); in freebsd_syscall() 241 ret = do_freebsd_pdfork(cpu_env, arg1, arg2); in freebsd_syscall() 245 ret = do_freebsd_execve(arg1, arg2, arg3); in freebsd_syscall() 249 ret = do_freebsd_fexecve(arg1, arg2, arg3); in freebsd_syscall() 253 ret = do_freebsd_wait4(arg1, arg2, arg3, arg4); in freebsd_syscall() 257 ret = do_freebsd_wait6(cpu_env, arg1, arg2, arg3, in freebsd_syscall() 262 ret = do_bsd_exit(cpu_env, arg1); in freebsd_syscall() 266 ret = do_bsd_getgroups(arg1, arg2); in freebsd_syscall() 270 ret = do_bsd_setgroups(arg1, arg2); in freebsd_syscall() [all …]
|
H A D | os-stat.h | 58 static inline abi_long do_freebsd11_stat(abi_long arg1, abi_long arg2) in do_freebsd11_stat() argument 64 LOCK_PATH(p, arg1); in do_freebsd11_stat() 66 UNLOCK_PATH(p, arg1); in do_freebsd11_stat() 74 static inline abi_long do_freebsd11_lstat(abi_long arg1, abi_long arg2) in do_freebsd11_lstat() argument 80 LOCK_PATH(p, arg1); in do_freebsd11_lstat() 82 UNLOCK_PATH(p, arg1); in do_freebsd11_lstat() 90 static inline abi_long do_freebsd11_fstat(abi_long arg1, abi_long arg2) in do_freebsd11_fstat() argument 95 ret = get_errno(freebsd11_fstat(arg1, &st)); in do_freebsd11_fstat() 103 static inline abi_long do_freebsd_fstat(abi_long arg1, abi_long arg2) in do_freebsd_fstat() argument 108 ret = get_errno(fstat(arg1, &st)); in do_freebsd_fstat() [all …]
|
/openbmc/qemu/bsd-user/ |
H A D | bsd-file.h | 35 #define LOCK_PATH2(p1, arg1, p2, arg2) \ argument 37 (p1) = lock_user_string(arg1); \ 43 unlock_user(p1, arg1, 0); \ 48 #define UNLOCK_PATH2(p1, arg1, p2, arg2) \ argument 51 unlock_user(p1, arg1, 0); \ 71 static abi_long do_bsd_read(abi_long arg1, abi_long arg2, abi_long arg3) in do_bsd_read() argument 80 ret = get_errno(safe_read(arg1, p, arg3)); in do_bsd_read() 87 static abi_long do_bsd_pread(void *cpu_env, abi_long arg1, in do_bsd_pread() argument 101 ret = get_errno(safe_pread(arg1, p, arg3, target_arg64(arg4, arg5))); in do_bsd_pread() 108 static abi_long do_bsd_readv(abi_long arg1, abi_long arg2, abi_long arg3) in do_bsd_readv() argument [all …]
|
H A D | bsd-proc.h | 33 static inline abi_long do_bsd_exit(void *cpu_env, abi_long arg1) in do_bsd_exit() argument 35 gdb_exit(arg1); in do_bsd_exit() 37 _exit(arg1); in do_bsd_exit() 87 static inline abi_long do_bsd_umask(abi_long arg1) in do_bsd_umask() argument 89 return get_errno(umask(arg1)); in do_bsd_umask() 93 static inline abi_long do_bsd_setlogin(abi_long arg1) in do_bsd_setlogin() argument 98 p = lock_user_string(arg1); in do_bsd_setlogin() 103 unlock_user(p, arg1, 0); in do_bsd_setlogin() 109 static inline abi_long do_bsd_getlogin(abi_long arg1, abi_long arg2) in do_bsd_getlogin() argument 114 p = lock_user(VERIFY_WRITE, arg1, arg2, 0); in do_bsd_getlogin() [all …]
|
H A D | bsd-mem.h | 66 static inline abi_long do_bsd_mmap(void *cpu_env, abi_long arg1, abi_long arg2, in do_bsd_mmap() argument 74 return get_errno(target_mmap(arg1, arg2, arg3, in do_bsd_mmap() 80 static inline abi_long do_bsd_munmap(abi_long arg1, abi_long arg2) in do_bsd_munmap() argument 82 return get_errno(target_munmap(arg1, arg2)); in do_bsd_munmap() 86 static inline abi_long do_bsd_mprotect(abi_long arg1, abi_long arg2, in do_bsd_mprotect() argument 89 return get_errno(target_mprotect(arg1, arg2, arg3)); in do_bsd_mprotect() 104 static inline abi_long do_bsd_mlock(abi_long arg1, abi_long arg2) in do_bsd_mlock() argument 106 if (!guest_range_valid_untagged(arg1, arg2)) { in do_bsd_mlock() 109 return get_errno(mlock(g2h_untagged(arg1), arg2)); in do_bsd_mlock() 113 static inline abi_long do_bsd_munlock(abi_long arg1, abi_long arg2) in do_bsd_munlock() argument [all …]
|
/openbmc/bmcweb/redfish-core/include/ |
H A D | error_messages.hpp | 80 nlohmann::json propertyDuplicate(std::string_view arg1); 82 void propertyDuplicate(crow::Response& res, std::string_view arg1); 92 nlohmann::json propertyUnknown(std::string_view arg1); 94 void propertyUnknown(crow::Response& res, std::string_view arg1); 105 nlohmann::json propertyValueTypeError(const nlohmann::json& arg1, 108 void propertyValueTypeError(crow::Response& res, const nlohmann::json& arg1, 120 nlohmann::json propertyValueFormatError(const nlohmann::json& arg1, 123 void propertyValueFormatError(crow::Response& res, const nlohmann::json& arg1, 135 nlohmann::json propertyValueNotInList(const nlohmann::json& arg1, 138 void propertyValueNotInList(crow::Response& res, const nlohmann::json& arg1, [all …]
|
H A D | resource_messages.hpp | 34 nlohmann::json resourceErrorsDetected(std::string_view arg1, 37 nlohmann::json resourceErrorsCorrected(std::string_view arg1, 40 nlohmann::json resourceErrorThresholdExceeded(std::string_view arg1, 43 nlohmann::json resourceErrorThresholdCleared(std::string_view arg1, 46 nlohmann::json resourceWarningThresholdExceeded(std::string_view arg1, 49 nlohmann::json resourceWarningThresholdCleared(std::string_view arg1, 52 nlohmann::json resourceStatusChangedOK(std::string_view arg1, 55 nlohmann::json resourceStatusChangedWarning(std::string_view arg1, 58 nlohmann::json resourceStatusChangedCritical(std::string_view arg1, 61 nlohmann::json resourceStateChanged(std::string_view arg1, [all …]
|
H A D | task_messages.hpp | 30 nlohmann::json taskStarted(std::string_view arg1); 32 nlohmann::json taskCompletedOK(std::string_view arg1); 34 nlohmann::json taskCompletedWarning(std::string_view arg1); 36 nlohmann::json taskAborted(std::string_view arg1); 38 nlohmann::json taskCancelled(std::string_view arg1); 40 nlohmann::json taskRemoved(std::string_view arg1); 42 nlohmann::json taskPaused(std::string_view arg1); 44 nlohmann::json taskResumed(std::string_view arg1); 46 nlohmann::json taskProgressChanged(std::string_view arg1, uint64_t arg2);
|
/openbmc/bmcweb/redfish-core/src/ |
H A D | error_messages.cpp | 133 nlohmann::json propertyDuplicate(std::string_view arg1) in propertyDuplicate() argument 136 std::to_array({arg1})); in propertyDuplicate() 139 void propertyDuplicate(crow::Response& res, std::string_view arg1) in propertyDuplicate() argument 142 addMessageToJson(res.jsonValue, propertyDuplicate(arg1), arg1); in propertyDuplicate() 152 nlohmann::json propertyUnknown(std::string_view arg1) in propertyUnknown() argument 155 std::to_array({arg1})); in propertyUnknown() 158 void propertyUnknown(crow::Response& res, std::string_view arg1) in propertyUnknown() argument 161 addMessageToErrorJson(res.jsonValue, propertyUnknown(arg1)); in propertyUnknown() 171 nlohmann::json propertyValueTypeError(const nlohmann::json& arg1, in propertyValueTypeError() argument 175 arg1.dump(-1, ' ', true, nlohmann::json::error_handler_t::replace); in propertyValueTypeError() [all …]
|
H A D | resource_messages.cpp | 80 nlohmann::json resourceErrorsDetected(std::string_view arg1, in resourceErrorsDetected() argument 85 std::to_array({arg1, arg2})); in resourceErrorsDetected() 95 nlohmann::json resourceErrorsCorrected(std::string_view arg1, in resourceErrorsCorrected() argument 100 std::to_array({arg1, arg2})); in resourceErrorsCorrected() 110 nlohmann::json resourceErrorThresholdExceeded(std::string_view arg1, in resourceErrorThresholdExceeded() argument 115 std::to_array({arg1, arg2})); in resourceErrorThresholdExceeded() 125 nlohmann::json resourceErrorThresholdCleared(std::string_view arg1, in resourceErrorThresholdCleared() argument 130 std::to_array({arg1, arg2})); in resourceErrorThresholdCleared() 140 nlohmann::json resourceWarningThresholdExceeded(std::string_view arg1, in resourceWarningThresholdExceeded() argument 145 std::to_array({arg1, arg2})); in resourceWarningThresholdExceeded() [all …]
|
H A D | task_messages.cpp | 56 nlohmann::json taskStarted(std::string_view arg1) in taskStarted() argument 59 std::to_array({arg1})); in taskStarted() 69 nlohmann::json taskCompletedOK(std::string_view arg1) in taskCompletedOK() argument 72 std::to_array({arg1})); in taskCompletedOK() 82 nlohmann::json taskCompletedWarning(std::string_view arg1) in taskCompletedWarning() argument 85 std::to_array({arg1})); in taskCompletedWarning() 95 nlohmann::json taskAborted(std::string_view arg1) in taskAborted() argument 98 std::to_array({arg1})); in taskAborted() 108 nlohmann::json taskCancelled(std::string_view arg1) in taskCancelled() argument 111 std::to_array({arg1})); in taskCancelled() [all …]
|
/openbmc/qemu/target/mips/tcg/sysemu/ |
H A D | cp0_helper.c | 502 void helper_mtc0_index(CPUMIPSState *env, target_ulong arg1) in helper_mtc0_index() argument 505 uint32_t tlb_index = arg1 & 0x7fffffff; in helper_mtc0_index() 508 index_p |= arg1 & 0x80000000; in helper_mtc0_index() 514 void helper_mtc0_mvpcontrol(CPUMIPSState *env, target_ulong arg1) in helper_mtc0_mvpcontrol() argument 526 newval = (env->mvp->CP0_MVPControl & ~mask) | (arg1 & mask); in helper_mtc0_mvpcontrol() 533 void helper_mtc0_vpecontrol(CPUMIPSState *env, target_ulong arg1) in helper_mtc0_vpecontrol() argument 540 newval = (env->CP0_VPEControl & ~mask) | (arg1 & mask); in helper_mtc0_vpecontrol() 552 void helper_mttc0_vpecontrol(CPUMIPSState *env, target_ulong arg1) in helper_mttc0_vpecontrol() argument 561 newval = (other->CP0_VPEControl & ~mask) | (arg1 & mask); in helper_mttc0_vpecontrol() 584 void helper_mtc0_vpeconf0(CPUMIPSState *env, target_ulong arg1) in helper_mtc0_vpeconf0() argument [all …]
|
/openbmc/qemu/tcg/ |
H A D | tcg-op.c | 350 void tcg_gen_add_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) in tcg_gen_add_i32() argument 352 tcg_gen_op3_i32(INDEX_op_add_i32, ret, arg1, arg2); in tcg_gen_add_i32() 355 void tcg_gen_addi_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2) in tcg_gen_addi_i32() argument 359 tcg_gen_mov_i32(ret, arg1); in tcg_gen_addi_i32() 361 tcg_gen_add_i32(ret, arg1, tcg_constant_i32(arg2)); in tcg_gen_addi_i32() 365 void tcg_gen_sub_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) in tcg_gen_sub_i32() argument 367 tcg_gen_op3_i32(INDEX_op_sub_i32, ret, arg1, arg2); in tcg_gen_sub_i32() 370 void tcg_gen_subfi_i32(TCGv_i32 ret, int32_t arg1, TCGv_i32 arg2) in tcg_gen_subfi_i32() argument 372 if (arg1 == 0) { in tcg_gen_subfi_i32() 375 tcg_gen_sub_i32(ret, tcg_constant_i32(arg1), arg2); in tcg_gen_subfi_i32() [all …]
|
/openbmc/qemu/accel/tcg/ |
H A D | tcg-runtime.c | 40 int32_t HELPER(div_i32)(int32_t arg1, int32_t arg2) in HELPER() 42 return arg1 / arg2; in HELPER() 45 int32_t HELPER(rem_i32)(int32_t arg1, int32_t arg2) in HELPER() 47 return arg1 % arg2; in HELPER() 50 uint32_t HELPER(divu_i32)(uint32_t arg1, uint32_t arg2) in HELPER() 52 return arg1 / arg2; in HELPER() 55 uint32_t HELPER(remu_i32)(uint32_t arg1, uint32_t arg2) in HELPER() 57 return arg1 % arg2; in HELPER() 62 uint64_t HELPER(shl_i64)(uint64_t arg1, uint64_t arg2) in HELPER() 64 return arg1 << arg2; in HELPER() [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/inc/ |
H A D | bw_fixed.h | 42 static inline struct bw_fixed bw_min2(const struct bw_fixed arg1, in bw_min2() argument 45 return (arg1.value <= arg2.value) ? arg1 : arg2; in bw_min2() 48 static inline struct bw_fixed bw_max2(const struct bw_fixed arg1, in bw_max2() argument 51 return (arg2.value <= arg1.value) ? arg1 : arg2; in bw_max2() 101 static inline struct bw_fixed bw_add(const struct bw_fixed arg1, in bw_add() argument 106 res.value = arg1.value + arg2.value; in bw_add() 111 static inline struct bw_fixed bw_sub(const struct bw_fixed arg1, const struct bw_fixed arg2) in bw_sub() argument 115 res.value = arg1.value - arg2.value; in bw_sub() 120 struct bw_fixed bw_mul(const struct bw_fixed arg1, const struct bw_fixed arg2); 121 static inline struct bw_fixed bw_div(const struct bw_fixed arg1, const struct bw_fixed arg2) in bw_div() argument [all …]
|
/openbmc/qemu/target/mips/tcg/ |
H A D | vr54xx_helper.c | 47 target_ulong helper_muls(CPUMIPSState *env, target_ulong arg1, in helper_muls() argument 50 return set_HI_LOT0(env, 0 - ((int64_t)(int32_t)arg1 * in helper_muls() 54 target_ulong helper_mulsu(CPUMIPSState *env, target_ulong arg1, in helper_mulsu() argument 57 return set_HI_LOT0(env, 0 - (uint64_t)(uint32_t)arg1 * in helper_mulsu() 61 target_ulong helper_macc(CPUMIPSState *env, target_ulong arg1, in helper_macc() argument 64 return set_HI_LOT0(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 * in helper_macc() 68 target_ulong helper_macchi(CPUMIPSState *env, target_ulong arg1, in helper_macchi() argument 71 return set_HIT0_LO(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 * in helper_macchi() 75 target_ulong helper_maccu(CPUMIPSState *env, target_ulong arg1, in helper_maccu() argument 78 return set_HI_LOT0(env, (uint64_t)get_HILO(env) + (uint64_t)(uint32_t)arg1 * in helper_maccu() [all …]
|
H A D | ldst_helper.c | 70 void helper_swl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2, in helper_swl() argument 76 cpu_stb_mmuidx_ra(env, arg2, (uint8_t)(arg1 >> 24), mem_idx, GETPC()); in helper_swl() 79 cpu_stb_mmuidx_ra(env, arg2 + 1 * dir, (uint8_t)(arg1 >> 16), in helper_swl() 84 cpu_stb_mmuidx_ra(env, arg2 + 2 * dir, (uint8_t)(arg1 >> 8), in helper_swl() 89 cpu_stb_mmuidx_ra(env, arg2 + 3 * dir, (uint8_t)arg1, in helper_swl() 94 void helper_swr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2, in helper_swr() argument 100 cpu_stb_mmuidx_ra(env, arg2, (uint8_t)arg1, mem_idx, GETPC()); in helper_swr() 103 cpu_stb_mmuidx_ra(env, arg2 - 1 * dir, (uint8_t)(arg1 >> 8), in helper_swr() 108 cpu_stb_mmuidx_ra(env, arg2 - 2 * dir, (uint8_t)(arg1 >> 16), in helper_swr() 113 cpu_stb_mmuidx_ra(env, arg2 - 3 * dir, (uint8_t)(arg1 >> 24), in helper_swr() [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/display/include/ |
H A D | fixed31_32.h | 135 static inline bool dc_fixpt_lt(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_lt() argument 137 return arg1.value < arg2.value; in dc_fixpt_lt() 144 static inline bool dc_fixpt_le(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_le() argument 146 return arg1.value <= arg2.value; in dc_fixpt_le() 153 static inline bool dc_fixpt_eq(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_eq() argument 155 return arg1.value == arg2.value; in dc_fixpt_eq() 162 static inline struct fixed31_32 dc_fixpt_min(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_min() argument 164 if (arg1.value <= arg2.value) in dc_fixpt_min() 165 return arg1; in dc_fixpt_min() 174 static inline struct fixed31_32 dc_fixpt_max(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_max() argument [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dml/calcs/ |
H A D | dcn_calc_math.c | 40 float dcn_bw_mod(const float arg1, const float arg2) in dcn_bw_mod() argument 42 if (isNaN(arg1)) in dcn_bw_mod() 45 return arg1; in dcn_bw_mod() 46 return arg1 - arg1 * ((int) (arg1 / arg2)); in dcn_bw_mod() 49 float dcn_bw_min2(const float arg1, const float arg2) in dcn_bw_min2() argument 51 if (isNaN(arg1)) in dcn_bw_min2() 54 return arg1; in dcn_bw_min2() 55 return arg1 < arg2 ? arg1 : arg2; in dcn_bw_min2() 58 unsigned int dcn_bw_max(const unsigned int arg1, const unsigned int arg2) in dcn_bw_max() argument 60 return arg1 > arg2 ? arg1 : arg2; in dcn_bw_max() [all …]
|
/openbmc/qemu/include/tcg/ |
H A D | tcg-op-common.h | 83 void tcg_gen_addi_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 84 void tcg_gen_subfi_i32(TCGv_i32 ret, int32_t arg1, TCGv_i32 arg2); 85 void tcg_gen_subi_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 86 void tcg_gen_andi_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 87 void tcg_gen_ori_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 88 void tcg_gen_xori_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 89 void tcg_gen_shli_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 90 void tcg_gen_shri_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 91 void tcg_gen_sari_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); 92 void tcg_gen_muli_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2); [all …]
|
/openbmc/qemu/linux-user/ |
H A D | strace.c | 649 abi_long arg1, abi_long arg2, abi_long arg3, in print_newselect() argument 653 print_fdset(arg1, arg2); in print_newselect() 655 print_fdset(arg1, arg3); in print_newselect() 657 print_fdset(arg1, arg4); in print_newselect() 666 abi_long arg1, abi_long arg2, abi_long arg3, in print_semctl() argument 670 name->name, arg1, arg2); in print_semctl() 677 abi_long arg0, abi_long arg1, abi_long arg2, in print_shmat() argument 690 print_pointer(arg1, 0); in print_shmat() 698 abi_long arg1, abi_long arg2, abi_long arg3, in print_ipc() argument 701 switch(arg1) { in print_ipc() [all …]
|
/openbmc/linux/arch/m68k/include/asm/ |
H A D | linkage.h | 22 #define __asmlinkage_protect1(ret, arg1) \ argument 23 __asmlinkage_protect_n(ret, "m" (arg1)) 24 #define __asmlinkage_protect2(ret, arg1, arg2) \ argument 25 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2)) 26 #define __asmlinkage_protect3(ret, arg1, arg2, arg3) \ argument 27 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3)) 28 #define __asmlinkage_protect4(ret, arg1, arg2, arg3, arg4) \ argument 29 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ 31 #define __asmlinkage_protect5(ret, arg1, arg2, arg3, arg4, arg5) \ argument 32 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ [all …]
|
/openbmc/qemu/tests/tcg/arm/ |
H A D | hello-arm.c | 27 #define _syscall1(type,name,type1,arg1) \ argument 28 type name(type1 arg1) { \ 35 : "r" ((long)(arg1)) \ 40 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 41 type name(type1 arg1,type2 arg2) { \ 49 : "r" ((long)(arg1)),"r" ((long)(arg2)) \ 55 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 56 type name(type1 arg1,type2 arg2,type3 arg3) { \ 65 : "r" ((long)(arg1)),"r" ((long)(arg2)),"r" ((long)(arg3)) \ 71 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument [all …]
|
/openbmc/qemu/target/tricore/ |
H A D | fpu_helper.c | 51 static inline float32 f_maddsub_nan_result(float32 arg1, float32 arg2, in f_maddsub_nan_result() argument 58 if (float32_is_any_nan(arg1) || float32_is_any_nan(arg2) || in f_maddsub_nan_result() 61 } else if (float32_is_infinity(arg1) && float32_is_zero(arg2)) { in f_maddsub_nan_result() 63 } else if (float32_is_zero(arg1) && float32_is_infinity(arg2)) { in f_maddsub_nan_result() 66 aSign = arg1 >> 31; in f_maddsub_nan_result() 70 aExp = (arg1 >> 23) & 0xff; in f_maddsub_nan_result() 123 float32 arg1 = make_float32(r1); \ 128 f_result = float32_##op(arg2, arg1, &env->fp_status); \ 134 && !float32_is_any_nan(arg1) \ 150 float32 arg1 = make_float32(r1); in FADD_SUB() local [all …]
|
/openbmc/linux/arch/x86/um/shared/sysdep/ |
H A D | stub_32.h | 24 static inline long stub_syscall1(long syscall, long arg1) in stub_syscall1() argument 28 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1)); in stub_syscall1() 33 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument 37 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall2() 43 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument 47 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall3() 53 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument 58 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall4() 64 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument 69 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall5()
|