Home
last modified time | relevance | path

Searched refs:argtype (Results 1 – 16 of 16) 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.c325 struct sdt_argtype *argtype; in sdt_getargdesc() local
333 TAILQ_FOREACH(argtype, &probe->argtype_list, argtype_entry) { in sdt_getargdesc()
334 if (desc->dtargd_ndx == argtype->ndx) { in sdt_getargdesc()
336 if (argtype->type == NULL) { in sdt_getargdesc()
341 strlcpy(desc->dtargd_native, argtype->type, in sdt_getargdesc()
343 if (argtype->xtype != NULL) in sdt_getargdesc()
344 strlcpy(desc->dtargd_xlate, argtype->xtype, in sdt_getargdesc()
406 for (struct sdt_argtype **argtype = a_begin; argtype < a_end; in sdt_kld_load_probes() local
407 argtype++) { in sdt_kld_load_probes()
408 (*argtype)->probe->n_args++; in sdt_kld_load_probes()
[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/contrib/ncurses/ncurses/base/
H A DMKlib_gen.sh308 argtype = ""
318 argtype = "char";
320 argtype = "int";
322 argtype = "short";
324 argtype = "chtype";
326 argtype = "attr";
336 if ( argtype == "char" ) {
349 if ( argtype == "int" || argtype == "short" ) {
351 argtype = ""
352 } else if ( argtype != "" ) {
[all …]
/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/crypto/openssl/include/openssl/
H A Dlhash.h354 #define IMPLEMENT_LHASH_DOALL_ARG_CONST(type, argtype) \
355 int_implement_lhash_doall(type, argtype, const type)
357 #define IMPLEMENT_LHASH_DOALL_ARG(type, argtype) \
358 int_implement_lhash_doall(type, argtype, type)
360 #define int_implement_lhash_doall(type, argtype, cbargtype) \
362 lh_##type##_doall_##argtype##_thunk(void *node, void *arg, OPENSSL_LH_DOALL_FUNCARG fn) \
364 void (*fn_conv)(cbargtype *, argtype *) = (void (*)(cbargtype *, argtype *))fn; \
365 fn_conv((cbargtype *)node, (argtype *)arg); \
368 lh_##type##_doall_##argtype(LHASH_O
337 IMPLEMENT_LHASH_DOALL_ARG_CONST(type,argtype) global() argument
340 IMPLEMENT_LHASH_DOALL_ARG(type,argtype) global() argument
343 int_implement_lhash_doall(type,argtype,cbargtype) global() argument
[all...]
H A Dlhash.h.in356 #define IMPLEMENT_LHASH_DOALL_ARG_CONST(type, argtype) \
357 int_implement_lhash_doall(type, argtype, const type)
359 #define IMPLEMENT_LHASH_DOALL_ARG(type, argtype) \
360 int_implement_lhash_doall(type, argtype, type)
362 #define int_implement_lhash_doall(type, argtype, cbargtype) \
364 lh_##type##_doall_##argtype##_thunk(void *node, void *arg, OPENSSL_LH_DOALL_FUNCARG fn) \
366 void (*fn_conv)(cbargtype *, argtype *) = (void (*)(cbargtype *, argtype *))fn; \
367 fn_conv((cbargtype *)node, (argtype *)arg); \
370 lh_##type##_doall_##argtype(LHASH_O
339 IMPLEMENT_LHASH_DOALL_ARG_CONST(type,argtype) global() argument
342 IMPLEMENT_LHASH_DOALL_ARG(type,argtype) global() argument
345 int_implement_lhash_doall(type,argtype,cbargtype) global() 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/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_iter.c494 zfs_type_t argtype = types; in zfs_for_each() local
502 argtype |= ZFS_TYPE_FILESYSTEM; in zfs_for_each()
504 argtype |= ZFS_TYPE_VOLUME; in zfs_for_each()
510 argtype); in zfs_for_each()
512 zhp = zfs_open(g_zfs, argv[i], argtype); in zfs_for_each()
/freebsd/sys/contrib/dev/iwlwifi/mld/
H A Ddebugfs.h8 #define MLD_DEBUGFS_OPEN_WRAPPER(name, buflen, argtype) \ argument
10 argtype *arg; \
60 #define _MLD_DEBUGFS_READ_FILE_OPS(name, buflen, argtype) \ argument
61 MLD_DEBUGFS_OPEN_WRAPPER(name, buflen, argtype) \
/freebsd/sys/tools/syscalls/core/
H A Dsyscall.lua328 local argname, argtype = v.name, v.type
329 type = type .. comma .. argtype
330 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.c1171 zfs_path_to_zhandle(libzfs_handle_t *hdl, const char *path, zfs_type_t argtype) in zfs_path_to_zhandle() argument
1180 return (zfs_open(hdl, path, argtype)); in zfs_path_to_zhandle()
H A Dlibzfs.abi8977 <parameter type-id='2e45de5d' name='argtype'/>