Home
last modified time | relevance | path

Searched refs:argtype (Results 1 – 15 of 15) sorted by relevance

/freebsd/sys/tools/syscalls/scripts/
H A Dsystrace_args.lua111 local argtype = util.trim(
114 if argtype == "int" and
124 if argtype:find("*") then
125 desc = "userland " .. argtype
127 desc = argtype;
137 if argtype == "int" and
150 if util.isPtrType(argtype,
156 arg.name, argtype))
157 elseif argtype == "union l_semun" then
161 arg.name, argtype))
[all …]
/freebsd/sys/cddl/dev/sdt/
H A Dsdt.c313 struct sdt_argtype *argtype; in sdt_getargdesc() local
321 TAILQ_FOREACH(argtype, &probe->argtype_list, argtype_entry) { in sdt_getargdesc()
322 if (desc->dtargd_ndx == argtype->ndx) { in sdt_getargdesc()
324 if (argtype->type == NULL) { in sdt_getargdesc()
329 strlcpy(desc->dtargd_native, argtype->type, in sdt_getargdesc()
331 if (argtype->xtype != NULL) in sdt_getargdesc()
332 strlcpy(desc->dtargd_xlate, argtype->xtype, in sdt_getargdesc()
392 for (struct sdt_argtype **argtype = a_begin; argtype < a_end; in sdt_kld_load_probes() local
393 argtype++) { in sdt_kld_load_probes()
394 (*argtype)->probe->n_args++; in sdt_kld_load_probes()
[all …]
/freebsd/contrib/ncurses/ncurses/base/
H A DMKlib_gen.sh302 argtype = ""
312 argtype = "char";
314 argtype = "int";
316 argtype = "short";
318 argtype = "chtype";
320 argtype = "attr";
330 if ( argtype == "char" ) {
343 if ( argtype == "int" || argtype == "short" ) {
345 argtype = ""
346 } else if ( argtype != "" ) {
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Ddebugfs.h14 #define MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \
19 argtype *arg = file->private_data; \
29 #define _MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, buflen, argtype) \
30 MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \
38 #define _MVM_DEBUGFS_WRITE_FILE_OPS(name, buflen, argtype) \
39 MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \
13 MVM_DEBUGFS_WRITE_WRAPPER(name,buflen,argtype) global() argument
28 _MVM_DEBUGFS_READ_WRITE_FILE_OPS(name,buflen,argtype) global() argument
37 _MVM_DEBUGFS_WRITE_FILE_OPS(name,buflen,argtype) global() argument
/freebsd/sys/contrib/dev/iwlwifi/fw/
H A Ddebugfs.c12 #define FWRT_DEBUGFS_OPEN_WRAPPER(name, buflen, argtype) \ argument
14 argtype *arg; \
62 #define _FWRT_DEBUGFS_READ_FILE_OPS(name, buflen, argtype) \ argument
63 FWRT_DEBUGFS_OPEN_WRAPPER(name, buflen, argtype) \
72 #define FWRT_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \ argument
77 argtype *arg = \
88 #define _FWRT_DEBUGFS_READ_WRITE_FILE_OPS(name, buflen, argtype) \ argument
89 FWRT_DEBUGFS_OPEN_WRAPPER(name, buflen, argtype) \
90 FWRT_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \
100 #define _FWRT_DEBUGFS_WRITE_FILE_OPS(name, buflen, argtype) \ argument
[all...]
/freebsd/contrib/arm-optimized-routines/math/test/
H A Dmathtest.c70 } argtype; member
119 int is_double_argtype(int argtype) { in is_double_argtype() argument
120 switch(argtype) { in is_double_argtype()
131 int is_single_argtype(int argtype) { in is_single_argtype() argument
132 switch(argtype) { in is_single_argtype()
165 int is_complex_argtype(int argtype) { in is_complex_argtype() argument
166 switch(argtype) { in is_complex_argtype()
720 int argtype=2, rettype=2; /* for do_op */ in parsetest() local
770 if(is_single_argtype(ret.func->argtype)) in parsetest()
771 argtype = 0; in parsetest()
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Dlhash.h236 #define IMPLEMENT_LHASH_DOALL_ARG_CONST(type, argtype) \ argument
237 int_implement_lhash_doall(type, argtype, const type)
239 #define IMPLEMENT_LHASH_DOALL_ARG(type, argtype) \ argument
240 int_implement_lhash_doall(type, argtype, type)
242 #define int_implement_lhash_doall(type, argtype, cbargtype) \ argument
244 lh_##type##_doall_##argtype(LHASH_OF(type) *lh, \
245 void (*fn)(cbargtype *, argtype *), \
246 argtype *arg) \
H A Dlhash.h.in238 #define IMPLEMENT_LHASH_DOALL_ARG_CONST(type, argtype) \ argument
239 int_implement_lhash_doall(type, argtype, const type)
241 #define IMPLEMENT_LHASH_DOALL_ARG(type, argtype) \ argument
242 int_implement_lhash_doall(type, argtype, type)
244 #define int_implement_lhash_doall(type, argtype, cbargtype) \ argument
246 lh_##type##_doall_##argtype(LHASH_OF(type) *lh, \
247 void (*fn)(cbargtype *, argtype *), \
248 argtype *arg) \
/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_iter.c502 zfs_type_t argtype = types; in zfs_for_each() local
510 argtype |= ZFS_TYPE_FILESYSTEM; in zfs_for_each()
512 argtype |= ZFS_TYPE_VOLUME; in zfs_for_each()
518 argtype); in zfs_for_each()
520 zhp = zfs_open(g_zfs, argv[i], argtype); in zfs_for_each()
/freebsd/sys/tools/syscalls/core/
H A Dsyscall.lua327 local argname, argtype = v.name, v.type
328 type = type .. comma .. argtype
329 type_var = type_var .. comma .. argtype .. " " .. argname
/freebsd/sbin/fdisk/
H A Dfdisk.c110 char argtype; member
992 command->args[command->n_args].argtype = *cp++; in parse_config_line()
1037 switch (command->args[i].argtype) { in process_geometry()
1050 current_line_number, command->args[i].argtype, in process_geometry()
1051 command->args[i].argtype); in process_geometry()
/freebsd/lib/libdevstat/
H A Ddevstat.c95 devstat_arg_type argtype; member
1306 switch (devstat_arg_list[metric].argtype) { in devstat_compute_statistics()
1322 if (devstat_arg_list[metric].argtype == DEVSTAT_ARG_SKIP) in devstat_compute_statistics()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_mve.td1223 class ScalarShift<Type argtype, dag shiftCountArg, dag shiftCodeGen>:
1224 Intrinsic<argtype, !con((args argtype:$value), shiftCountArg), shiftCodeGen> {
1232 class LongScalarShift<Type argtype, dag shiftCountArg, dag shiftCodeGen>:
1233 ScalarShift<argtype, shiftCountArg,
1234 (seq (u32 (lshr $value, (argtype 32))):$hi,
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_util.c1159 zfs_path_to_zhandle(libzfs_handle_t *hdl, const char *path, zfs_type_t argtype) in zfs_path_to_zhandle() argument
1168 return (zfs_open(hdl, path, argtype)); in zfs_path_to_zhandle()
H A Dlibzfs.abi8460 <parameter type-id='2e45de5d' name='argtype'/>