HomeSort by: relevance | last modified time | path
    Searched refs:arg2 (Results 1 - 25 of 360) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/
bw_fixed.h 45 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)
117 res.value = arg1.value - arg2.value
    [all...]
bw_fixed.h 45 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)
117 res.value = arg1.value - arg2.value
    [all...]
dcn_calc_math.h 31 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);
dcn_calc_math.h 31 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/
rumpvfs_if_wrappers.c 27 rump_pub_getvninfo(struct vnode *arg1, enum rump_vtype *arg2, off_t *arg3, dev_t *arg4)
31 rump_getvninfo(arg1, arg2, arg3, arg4);
72 rump_pub_vattr_settype(struct vattr *arg1, enum rump_vtype arg2)
76 rump_vattr_settype(arg1, arg2);
81 rump_pub_vattr_setmode(struct vattr *arg1, mode_t arg2)
85 rump_vattr_setmode(arg1, arg2);
90 rump_pub_vattr_setrdev(struct vattr *arg1, dev_t arg2)
94 rump_vattr_setrdev(arg1, arg2);
147 rump_pub_vp_vmobjlock(struct vnode *arg1, int arg2)
151 rump_vp_vmobjlock(arg1, arg2);
    [all...]
rumpvfs_if_wrappers.c 27 rump_pub_getvninfo(struct vnode *arg1, enum rump_vtype *arg2, off_t *arg3, dev_t *arg4)
31 rump_getvninfo(arg1, arg2, arg3, arg4);
72 rump_pub_vattr_settype(struct vattr *arg1, enum rump_vtype arg2)
76 rump_vattr_settype(arg1, arg2);
81 rump_pub_vattr_setmode(struct vattr *arg1, mode_t arg2)
85 rump_vattr_setmode(arg1, arg2);
90 rump_pub_vattr_setrdev(struct vattr *arg1, dev_t arg2)
94 rump_vattr_setrdev(arg1, arg2);
147 rump_pub_vp_vmobjlock(struct vnode *arg1, int arg2)
151 rump_vp_vmobjlock(arg1, arg2);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/calcs/
amdgpu_dcn_calc_math.c 44 float dcn_bw_mod(const float arg1, const float arg2)
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)
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)
    [all...]
amdgpu_dcn_calc_math.c 44 float dcn_bw_mod(const float arg1, const float arg2)
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)
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)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/include/
fixed31_32.h 143 * result = arg1 < arg2
145 static inline bool dc_fixpt_lt(struct fixed31_32 arg1, struct fixed31_32 arg2)
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)
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)
165 return arg1.value == arg2.value;
170 * result = min(arg1, arg2) := (arg1 <= arg2) ? arg1 : arg
    [all...]
fixed31_32.h 143 * result = arg1 < arg2
145 static inline bool dc_fixpt_lt(struct fixed31_32 arg1, struct fixed31_32 arg2)
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)
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)
165 return arg1.value == arg2.value;
170 * result = min(arg1, arg2) := (arg1 <= arg2) ? arg1 : arg
    [all...]
  /src/sys/rump/librump/rumpnet/
rumpnet_if_wrappers.c 27 rump_pub_shmif_create(const char *arg1, int *arg2)
32 rv = rump_shmif_create(arg1, arg2);
rumpnet_if_wrappers.c 27 rump_pub_shmif_create(const char *arg1, int *arg2)
32 rv = rump_shmif_create(arg1, arg2);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_syscall_linux_x86_64.inc 32 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), "d"((u64)arg3), "r"((u64)arg4), "r"((u64)arg5)
    [all...]
sanitizer_syscall_linux_x86_64.inc 32 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), "d"((u64)arg3), "r"((u64)arg4), "r"((u64)arg5)
    [all...]
  /src/sys/rump/librump/rumpkern/
rumpkern_if_wrappers.c 27 rump_pub_module_init(const struct modinfo * const *arg1, size_t arg2)
32 rv = rump_module_init(arg1, arg2);
51 rump_pub_kernelfsym_load(void *arg1, uint64_t arg2, char *arg3, uint64_t arg4)
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)
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)
116 rv = rump_cred_create(arg1, arg2, arg3, arg4);
195 rump_pub_allbetsareoff_setid(pid_t arg1, int arg2)
199 rump_allbetsareoff_setid(arg1, arg2);
    [all...]
rumpkern_if_wrappers.c 27 rump_pub_module_init(const struct modinfo * const *arg1, size_t arg2)
32 rv = rump_module_init(arg1, arg2);
51 rump_pub_kernelfsym_load(void *arg1, uint64_t arg2, char *arg3, uint64_t arg4)
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)
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)
116 rv = rump_cred_create(arg1, arg2, arg3, arg4);
195 rump_pub_allbetsareoff_setid(pid_t arg1, int arg2)
199 rump_allbetsareoff_setid(arg1, arg2);
    [all...]
  /src/sys/sys/
sdt.h 53 #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...]
sdt.h 53 #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/
strlcpy.S 53 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
strlcpy.S 53 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
  /src/tests/usr.bin/indent/
lsym_comma.c 112 function_call(arg1, arg2);
113 (*indirect_function_call)(arg1, arg2);
143 macro_invocation(arg1, arg2);
lsym_comma.c 112 function_call(arg1, arg2);
113 (*indirect_function_call)(arg1, arg2);
143 macro_invocation(arg1, arg2);
  /src/common/lib/libc/arch/hppa/atomic/
atomic_cas_up.S 41 stw %arg2, 0(%arg0)
54 sth %arg2, 0(%arg0)
66 stb %arg2, 0(%arg0)
atomic_cas_up.S 41 stw %arg2, 0(%arg0)
54 sth %arg2, 0(%arg0)
66 stb %arg2, 0(%arg0)
  /src/lib/csu/arch/hppa/
crt0.S 60 copy %arg0, %arg2 ; ps_strings -> tmp
63 copy %arg2, %arg1 ; ps_strings -> arg1

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>