Searched refs:arg2 (Results 1 - 25 of 180) sorted by relevance

12345678

/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/
H A Dbw_fixed.h45 const struct bw_fixed arg2)
47 return (arg1.value <= arg2.value) ? arg1 : arg2;
51 const struct bw_fixed arg2)
53 return (arg2.value <= arg1.value) ? arg1 : arg2;
104 const struct bw_fixed arg2)
108 res.value = arg1.value + arg2.value;
113 static inline struct bw_fixed bw_sub(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
117 res.value = arg1.value - arg2
44 bw_min2(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
50 bw_max2(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
103 bw_add(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
123 bw_div(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
128 bw_mod(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
138 bw_equ(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
143 bw_neq(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
148 bw_leq(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
153 bw_meq(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
158 bw_ltn(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
163 bw_mtn(const struct bw_fixed arg1,const struct bw_fixed arg2) argument
[all...]
H A Ddcn_calc_math.h31 float dcn_bw_mod(const float arg1, const float arg2);
32 float dcn_bw_min2(const float arg1, const float arg2);
33 unsigned int dcn_bw_max(const unsigned int arg1, const unsigned int arg2);
34 float dcn_bw_max2(const float arg1, const float arg2);
/src/sys/rump/librump/rumpvfs/
H A Drumpvfs_if_wrappers.c27 rump_pub_getvninfo(struct vnode *arg1, enum rump_vtype *arg2, off_t *arg3, dev_t *arg4) argument
31 rump_getvninfo(arg1, arg2, arg3, arg4);
72 rump_pub_vattr_settype(struct vattr *arg1, enum rump_vtype arg2) argument
76 rump_vattr_settype(arg1, arg2);
81 rump_pub_vattr_setmode(struct vattr *arg1, mode_t arg2) argument
85 rump_vattr_setmode(arg1, arg2);
90 rump_pub_vattr_setrdev(struct vattr *arg1, dev_t arg2) argument
94 rump_vattr_setrdev(arg1, arg2);
147 rump_pub_vp_vmobjlock(struct vnode *arg1, int arg2) argument
151 rump_vp_vmobjlock(arg1, arg2);
156 rump_pub_freecn(struct componentname * arg1,int arg2) argument
165 rump_pub_namei(uint32_t arg1,uint32_t arg2,const char * arg3,struct vnode ** arg4,struct vnode ** arg5,struct componentname ** arg6) argument
177 rump_pub_makecn(u_long arg1,u_long arg2,const char * arg3,size_t arg4,struct kauth_cred * arg5,struct lwp * arg6) argument
189 rump_pub_vfs_unmount(struct mount * arg1,int arg2) argument
201 rump_pub_vfs_root(struct mount * arg1,struct vnode ** arg2,int arg3) argument
213 rump_pub_vfs_statvfs(struct mount * arg1,struct statvfs * arg2) argument
225 rump_pub_vfs_sync(struct mount * arg1,int arg2,struct kauth_cred * arg3) argument
237 rump_pub_vfs_fhtovp(struct mount * arg1,struct fid * arg2,struct vnode ** arg3) argument
249 rump_pub_vfs_vptofh(struct vnode * arg1,struct fid * arg2,size_t * arg3) argument
261 rump_pub_vfs_extattrctl(struct mount * arg1,int arg2,struct vnode * arg3,int arg4,const char * arg5) argument
282 rump_pub_vfs_getmp(const char * arg1,struct mount ** arg2) argument
294 rump_pub_vfs_mount_print(const char * arg1,int arg2) argument
303 rump_pub_syspuffs_glueinit(int arg1,int * arg2) argument
317 rump_pub_vattr50_to_vattr(const struct vattr * arg1,struct vattr * arg2) argument
330 rump_pub_vattr_to_vattr50(const struct vattr * arg1,struct vattr * arg2) argument
[all...]
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/calcs/
H A Damdgpu_dcn_calc_math.c44 float dcn_bw_mod(const float arg1, const float arg2) argument
47 return arg2;
48 if (isNaN(arg2))
50 return arg1 - arg1 * ((int) (arg1 / arg2));
53 float dcn_bw_min2(const float arg1, const float arg2) argument
56 return arg2;
57 if (isNaN(arg2))
59 return arg1 < arg2 ? arg1 : arg2;
62 unsigned int dcn_bw_max(const unsigned int arg1, const unsigned int arg2) argument
66 dcn_bw_max2(const float arg1,const float arg2) argument
[all...]
/src/sys/external/bsd/drm2/dist/drm/amd/display/include/
H A Dfixed31_32.h143 * result = arg1 < arg2
145 static inline bool dc_fixpt_lt(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
147 return arg1.value < arg2.value;
152 * result = arg1 <= arg2
154 static inline bool dc_fixpt_le(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
156 return arg1.value <= arg2.value;
161 * result = arg1 == arg2
163 static inline bool dc_fixpt_eq(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
165 return arg1.value == arg2.value;
170 * result = min(arg1, arg2)
172 dc_fixpt_min(struct fixed31_32 arg1,struct fixed31_32 arg2) argument
184 dc_fixpt_max(struct fixed31_32 arg1,struct fixed31_32 arg2) argument
255 dc_fixpt_add(struct fixed31_32 arg1,struct fixed31_32 arg2) argument
271 dc_fixpt_add_int(struct fixed31_32 arg1,int arg2) argument
280 dc_fixpt_sub(struct fixed31_32 arg1,struct fixed31_32 arg2) argument
296 dc_fixpt_sub_int(struct fixed31_32 arg1,int arg2) argument
318 dc_fixpt_mul_int(struct fixed31_32 arg1,int arg2) argument
333 dc_fixpt_div_int(struct fixed31_32 arg1,long long arg2) argument
342 dc_fixpt_div(struct fixed31_32 arg1,struct fixed31_32 arg2) argument
436 dc_fixpt_pow(struct fixed31_32 arg1,struct fixed31_32 arg2) argument
[all...]
/src/sys/rump/librump/rumpnet/
H A Drumpnet_if_wrappers.c27 rump_pub_shmif_create(const char *arg1, int *arg2) argument
32 rv = rump_shmif_create(arg1, arg2);
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_syscall_linux_x86_64.inc32 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2) {
35 "S"((u64)arg2) : "rcx", "r11", "memory", "cc");
40 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3) {
43 "S"((u64)arg2), "d"((u64)arg3) : "rcx", "r11", "memory", "cc");
48 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4) {
52 "S"((u64)arg2), "d"((u64)arg3), "r"((u64)arg4) :
58 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4,
64 "S"((u64)arg2), "d"((u64)arg3), "r"((u64)arg4), "r"((u64)arg5) :
71 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4,
78 "S"((u64)arg2), "
[all...]
H A Dsanitizer_win_dll_thunk.h109 extern "C" void name(void *arg1, void *arg2) { \
112 fn(arg1, arg2); \
117 extern "C" void name(void *arg1, void *arg2, void *arg3) { \
120 fn(arg1, arg2, arg3); \
141 extern "C" void *name(void *arg1, void *arg2) { \
144 return fn(arg1, arg2); \
149 extern "C" void *name(void *arg1, void *arg2, void *arg3) { \
152 return fn(arg1, arg2, arg3); \
157 extern "C" void *name(void *arg1, void *arg2, void *arg3, void *arg4) { \
160 return fn(arg1, arg2, arg
[all...]
/src/sys/rump/librump/rumpkern/
H A Drumpkern_if_wrappers.c27 rump_pub_module_init(const struct modinfo * const *arg1, size_t arg2) argument
32 rv = rump_module_init(arg1, arg2);
51 rump_pub_kernelfsym_load(void *arg1, uint64_t arg2, char *arg3, uint64_t arg4) argument
56 rv = rump_kernelfsym_load(arg1, arg2, arg3, arg4);
63 rump_pub_uio_setup(void *arg1, size_t arg2, off_t arg3, enum rump_uiorw arg4) argument
68 rv = rump_uio_setup(arg1, arg2, arg3, arg4);
111 rump_pub_cred_create(uid_t arg1, gid_t arg2, size_t arg3, gid_t *arg4) argument
116 rv = rump_cred_create(arg1, arg2, arg3, arg4);
195 rump_pub_allbetsareoff_setid(pid_t arg1, int arg2) argument
199 rump_allbetsareoff_setid(arg1, arg2);
204 rump_pub_etfs_register(const char * arg1,const char * arg2,enum rump_etfs_type arg3) argument
216 rump_pub_etfs_register_withsize(const char * arg1,const char * arg2,enum rump_etfs_type arg3,uint64_t arg4,uint64_t arg5) argument
[all...]
/src/sys/sys/
H A Dsdt.h53 #define DTRACE_PROBE2(prov, name, arg1, arg2) do { \
57 (unsigned long)(arg2)); \
60 #define DTRACE_PROBE3(prov, name, arg1, arg2, arg3) do { \
64 (unsigned long)(arg2), (unsigned long)(arg3)); \
67 #define DTRACE_PROBE4(prov, name, arg1, arg2, arg3, arg4) do { \
71 (unsigned long)(arg2), (unsigned long)(arg3), \
75 #define DTRACE_PROBE5(prov, name, arg1, arg2, arg3, arg4, arg5) do { \
79 (unsigned long)(arg2), (unsigned long)(arg3), \
99 #define SDT_PROBE(prov, mod, func, name, arg0, arg1, arg2, arg3, arg4) do \
103 __MACROUSE((uintptr_t)(arg2)); \
[all...]
/src/lib/libc/arch/hppa/string/
H A Dstrlcpy.S53 comb,= %r0, %arg2, $strlcpy_dst_done
61 addib,=,n -1, %arg2, $strlcpy_dst_full
65 * %arg2 is always the number of bytes we can still
71 addib,<> -1, %arg2, $strlcpy_loop
H A Dbcmp.S69 comb,>= %r0,%arg2,$bcmp_exit
76 addib,<> -1,%arg2,$bcmp_loop
/src/tests/usr.bin/indent/
H A Dlsym_comma.c112 function_call(arg1, arg2);
113 (*indirect_function_call)(arg1, arg2);
143 macro_invocation(arg1, arg2);
/src/common/lib/libc/arch/hppa/atomic/
H A Datomic_cas_up.S41 stw %arg2, 0(%arg0)
54 sth %arg2, 0(%arg0)
66 stb %arg2, 0(%arg0)
/src/tests/compat/linux/arch/x86_64/
H A Dh_syscall.c36 syscall6(long number, register_t arg1, register_t arg2, register_t arg3, argument
46 : "a"(number), "D"(arg1), "S"(arg2), "d"(arg3), "r"(r10), "r"(r8), "r"(r9)
/src/lib/csu/arch/hppa/
H A Dcrt0.S60 copy %arg0, %arg2 ; ps_strings -> tmp
63 copy %arg2, %arg1 ; ps_strings -> arg1
/src/sys/arch/ia64/include/
H A Dpal.h100 u_int64_t arg2, u_int64_t arg3);
103 u_int64_t arg2, u_int64_t arg3);
106 u_int64_t arg2, u_int64_t arg3);
109 u_int64_t arg2, u_int64_t arg3);
/src/sys/secmodel/overlay/
H A Dsecmodel_overlay.c236 void *cookie, void *arg0, void *arg1, void *arg2, void *arg3)
251 arg0, arg1, arg2, arg3);
262 void *cookie, void *arg0, void *arg1, void *arg2, void *arg3)
277 arg0, arg1, arg2, arg3);
288 void *cookie, void *arg0, void *arg1, void *arg2, void *arg3)
303 arg0, arg1, arg2, arg3);
314 void *cookie, void *arg0, void *arg1, void *arg2, void *arg3)
329 arg0, arg1, arg2, arg3);
340 void *cookie, void *arg0, void *arg1, void *arg2, void *arg3)
355 arg0, arg1, arg2, arg
235 secmodel_overlay_generic_cb(kauth_cred_t cred,kauth_action_t action,void * cookie,void * arg0,void * arg1,void * arg2,void * arg3) argument
261 secmodel_overlay_system_cb(kauth_cred_t cred,kauth_action_t action,void * cookie,void * arg0,void * arg1,void * arg2,void * arg3) argument
287 secmodel_overlay_process_cb(kauth_cred_t cred,kauth_action_t action,void * cookie,void * arg0,void * arg1,void * arg2,void * arg3) argument
313 secmodel_overlay_network_cb(kauth_cred_t cred,kauth_action_t action,void * cookie,void * arg0,void * arg1,void * arg2,void * arg3) argument
339 secmodel_overlay_machdep_cb(kauth_cred_t cred,kauth_action_t action,void * cookie,void * arg0,void * arg1,void * arg2,void * arg3) argument
365 secmodel_overlay_device_cb(kauth_cred_t cred,kauth_action_t action,void * cookie,void * arg0,void * arg1,void * arg2,void * arg3) argument
391 secmodel_overlay_vnode_cb(kauth_cred_t cred,kauth_action_t action,void * cookie,void * arg0,void * arg1,void * arg2,void * arg3) argument
[all...]
/src/lib/libc/arch/hppa/sys/
H A Dptrace.S43 stw %arg2, HPPA_FRAME_ARG(2)(%sp)
53 ldw HPPA_FRAME_ARG(2)(%sp), %arg2
/src/sys/kern/
H A Dsubr_xcall.c257 xc_broadcast(unsigned int flags, xcfunc_t func, void *arg1, void *arg2) argument
271 (*func)(arg1, arg2);
281 return xc_highpri(func, arg1, arg2, NULL, ipl);
283 return xc_lowpri(func, arg1, arg2, NULL);
288 xc_nop(void *arg1, void *arg2) argument
314 xc_unicast(unsigned int flags, xcfunc_t func, void *arg1, void *arg2, argument
332 (*func)(arg1, arg2);
343 return xc_highpri(func, arg1, arg2, ci, ipl);
345 return xc_lowpri(func, arg1, arg2, ci);
396 xc_lowpri(xcfunc_t func, void *arg1, void *arg2, struc argument
443 void *arg1, *arg2; local in function:xc_thread
507 void *arg1, *arg2; local in function:xc__highpri_intr
546 xc_highpri(xcfunc_t func,void * arg1,void * arg2,struct cpu_info * ci,unsigned int ipl) argument
[all...]
H A Dsubr_kcov.c626 trace_cmp(uint64_t type, uint64_t arg1, uint64_t arg2, intptr_t pc) argument
667 kd->buf[idx * 4 + 3] = arg2;
673 void __sanitizer_cov_trace_cmp1(uint8_t arg1, uint8_t arg2);
676 __sanitizer_cov_trace_cmp1(uint8_t arg1, uint8_t arg2) argument
679 trace_cmp(KCOV_CMP_SIZE(0), arg1, arg2,
683 void __sanitizer_cov_trace_cmp2(uint16_t arg1, uint16_t arg2);
686 __sanitizer_cov_trace_cmp2(uint16_t arg1, uint16_t arg2) argument
689 trace_cmp(KCOV_CMP_SIZE(1), arg1, arg2,
693 void __sanitizer_cov_trace_cmp4(uint32_t arg1, uint32_t arg2);
696 __sanitizer_cov_trace_cmp4(uint32_t arg1, uint32_t arg2) argument
706 __sanitizer_cov_trace_cmp8(uint64_t arg1,uint64_t arg2) argument
716 __sanitizer_cov_trace_const_cmp1(uint8_t arg1,uint8_t arg2) argument
726 __sanitizer_cov_trace_const_cmp2(uint16_t arg1,uint16_t arg2) argument
736 __sanitizer_cov_trace_const_cmp4(uint32_t arg1,uint32_t arg2) argument
746 __sanitizer_cov_trace_const_cmp8(uint64_t arg1,uint64_t arg2) argument
[all...]
/src/sys/arch/hppa/hppa/
H A Dsupport.S80 comb,=,n %arg2, %r0, fdc_none /* no bytes, no flush */
83 add %arg1, %arg2, %arg0 /* get the last byte to flush in arg0 */
86 comb,< %arg2, %t1, fdc_short /* check for count < 16 * stride */
89 andcm %arg2, %t1, %t1 /* L = count - (count mod lenbigloop) */
133 comb,= %arg2, %r0, pdc_none /* no bytes, no purge */
136 add %arg1, %arg2, %arg0 /* get the last byte to flush in arg0 */
139 comb,< %arg2, %t1, pdc_short /* check for count < 16 * stride */
142 andcm %arg2, %t1, %t1 /* L = count - (count mod lenbigloop) */
186 comb,= %arg2, %r0, fic_none /* no bytes, no flush */
189 add %arg1, %arg2,
[all...]
/src/games/hunt/huntd/
H A Dterminal.c127 int arg1, arg2; local in function:sendcom
134 arg2 = va_arg(ap, int);
136 (void) putc(arg2, pp->p_output);
/src/sys/arch/x86/include/
H A Dcpu_msr.h44 x86_msr_xcall(void *arg1, void *arg2) argument
/src/sys/arch/arm/samsung/
H A Dsmc.h70 extern void exynos_smc(uint32_t cmd, uint32_t arg1, uint32_t arg2, uint32_t arg3);

Completed in 19 milliseconds

12345678