| /src/lib/libc/sys/ |
| Lint___syscall.c | 13 __syscall(quad_t arg1, ...)
|
| Lint_syscall.c | 13 syscall(int arg1, ...)
|
| /src/lib/libc/arch/hppa/string/ |
| bzero.S | 49 comb,>=,n %r0,%arg1,$bzero_exit 55 comib,>>,n 4,%arg1,$bzero_bytes 64 add %arg1,%t1,%arg1 71 comib,>>= 15, %arg1, $bzero_word 72 addi -16, %arg1, %arg1 79 comib,<< 15, %arg1, $bzero_loop_16 80 addi -16, %arg1, %arg1 [all...] |
| /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); 36 rump_pub_vfslist_iterate(struct vfsops *arg1) 41 rv = rump_vfslist_iterate(arg1); 48 rump_pub_vfs_getopsbyname(const char *arg1) 53 rv = rump_vfs_getopsbyname(arg1); 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) [all...] |
| /src/sys/arch/hppa/hppa/ |
| support.S | 83 add %arg1, %arg2, %arg0 /* get the last byte to flush in arg0 */ 90 add %arg1, %t1, %t1 /* ub for big loop is lb + L */ 92 fdc,m %arg3(%sr1, %arg1) /* Start flushing first cache line. */ 94 fdc,m %arg3(%sr1, %arg1) 95 fdc,m %arg3(%sr1, %arg1) 96 fdc,m %arg3(%sr1, %arg1) 97 fdc,m %arg3(%sr1, %arg1) 98 fdc,m %arg3(%sr1, %arg1) 99 fdc,m %arg3(%sr1, %arg1) 100 fdc,m %arg3(%sr1, %arg1) [all...] |
| /src/lib/libm/src/ |
| s_matherr.c | 25 if(x->arg1!=x->arg1) return 0;
|
| /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); 39 rump_pub_module_fini(const struct modinfo *arg1) 44 rv = rump_module_fini(arg1); 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); 75 rump_pub_uio_getresid(struct uio *arg1) 80 rv = rump_uio_getresid(arg1); [all...] |
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| Index_Internal.h | 24 #define INVOKE_BLOCK2(block, arg1, arg2) block(arg1, arg2) 30 #define INVOKE_BLOCK2(block, arg1, arg2) block->invoke(block, arg1, arg2)
|
| /src/external/mpl/bind/include/dns/ |
| probes.h | 18 #define LIBDNS_XFRIN_AXFR_FINALIZE_BEGIN(arg0, arg1) \ 19 __dtrace_libdns___xfrin_axfr_finalize_begin(arg0, arg1) 27 #define LIBDNS_XFRIN_AXFR_FINALIZE_END(arg0, arg1, arg2) \ 28 __dtrace_libdns___xfrin_axfr_finalize_end(arg0, arg1, arg2) 36 #define LIBDNS_XFRIN_CONNECTED(arg0, arg1, arg2) \ 37 __dtrace_libdns___xfrin_connected(arg0, arg1, arg2) 45 #define LIBDNS_XFRIN_DONE_CALLBACK_BEGIN(arg0, arg1, arg2) \ 46 __dtrace_libdns___xfrin_done_callback_begin(arg0, arg1, arg2) 54 #define LIBDNS_XFRIN_DONE_CALLBACK_END(arg0, arg1, arg2) \ 55 __dtrace_libdns___xfrin_done_callback_end(arg0, 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) 46 if (isNaN(arg1)) 49 return arg1; 50 return arg1 - arg1 * ((int) (arg1 / arg2)); 53 float dcn_bw_min2(const float arg1, const float arg2) 55 if (isNaN(arg1)) 58 return arg1; 59 return arg1 < arg2 ? arg1 : arg2 [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/ |
| bw_fixed.h | 44 static inline struct bw_fixed bw_min2(const struct bw_fixed arg1, 47 return (arg1.value <= arg2.value) ? arg1 : arg2; 50 static inline struct bw_fixed bw_max2(const struct bw_fixed arg1, 53 return (arg2.value <= arg1.value) ? arg1 : arg2; 103 static inline struct bw_fixed bw_add(const struct bw_fixed arg1, 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);
|
| /src/external/gpl2/groff/dist/src/include/ |
| error.h | 26 const errarg &arg1 = empty_errarg, 32 const errarg &arg1 = empty_errarg, 38 const errarg &arg1 = empty_errarg, 43 const errarg &arg1 = empty_errarg, 48 const errarg &arg1 = empty_errarg, 53 const errarg &arg1 = empty_errarg,
|
| /src/external/mpl/bind/include/ns/ |
| probes.h | 18 #define LIBNS_RRL_DROP(arg0, arg1, arg2, arg3) \ 19 __dtrace_libns___rrl_drop(arg0, arg1, arg2, arg3) 38 #define LIBNS_RRL_DROP(arg0, arg1, arg2, arg3)
|
| /src/external/gpl2/groff/dist/src/libs/libgroff/ |
| error.cpp | 38 const errarg &arg1, 70 errprint(format, arg1, arg2, arg3); 80 const errarg &arg1, 85 current_lineno, type, format, arg1, arg2, arg3); 90 const errarg &arg1, 94 do_error(ERROR, format, arg1, arg2, arg3); 98 const errarg &arg1, 102 do_error(WARNING, format, arg1, arg2, arg3); 106 const errarg &arg1, 110 do_error(FATAL, format, arg1, arg2, arg3) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| empty-enum.cc | 20 breakpt (enum1 arg1, enum2 arg2)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| empty-enum.cc | 20 breakpt (enum1 arg1, enum2 arg2)
|
| /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...] |
| /src/external/cddl/dtracetoolkit/dist/Bin/ |
| j_thread.d | 52 this->thread = (char *)copyin(arg0, arg1 + 1); 53 this->thread[arg1] = '\0'; 60 this->thread = (char *)copyin(arg0, arg1 + 1); 61 this->thread[arg1] = '\0';
|
| lockbydist.d | 10 lockstat:::adaptive-block { @time[execname] = quantize(arg1); }
|
| lockbyproc.d | 10 lockstat:::adaptive-block { @time[execname] = sum(arg1); }
|
| sh_calls.d | 49 @calls[basename(copyinstr(arg0)), "func", copyinstr(arg1)] = count(); 54 @calls[basename(copyinstr(arg0)), "builtin", copyinstr(arg1)] = count(); 59 @calls[basename(copyinstr(arg0)), "cmd", copyinstr(arg1)] = count(); 63 /arg1 != 0/
|
| /src/external/cddl/dtracetoolkit/dist/Java/ |
| j_thread.d | 52 this->thread = (char *)copyin(arg0, arg1 + 1); 53 this->thread[arg1] = '\0'; 60 this->thread = (char *)copyin(arg0, arg1 + 1); 61 this->thread[arg1] = '\0';
|
| /src/external/cddl/dtracetoolkit/dist/Locks/ |
| lockbydist.d | 10 lockstat:::adaptive-block { @time[execname] = quantize(arg1); }
|
| lockbyproc.d | 10 lockstat:::adaptive-block { @time[execname] = sum(arg1); }
|