| /freebsd-14.2/sys/tools/ |
| H A D | makesyscalls.lua | 686 argtype = argtype:gsub("intptr_t", config.abi_intptr_t) 687 argtype = argtype:gsub("semid_t", config.abi_semid_t) 689 argtype = argtype:gsub("size_t", config.abi_size_t) 690 argtype = argtype:gsub("^long", config.abi_long); 691 argtype = argtype:gsub("^u_long", config.abi_u_long); 698 argtype = argtype:gsub("[*][ ]*const[ ]*[*]", "**") 706 argtype = argtype:gsub("(struct [^ ]*)", "%1" .. 708 argtype = argtype:gsub("(union [^ ]*)", "%1" .. 729 type = argtype, 776 argtype = trim(argtype:gsub("__restrict$", ""), nil) [all …]
|
| /freebsd-14.2/sys/cddl/dev/sdt/ |
| H A D | sdt.c | 243 struct sdt_argtype *argtype; in sdt_getargdesc() local 252 if (desc->dtargd_ndx == argtype->ndx) { in sdt_getargdesc() 254 if (argtype->type == NULL) { in sdt_getargdesc() 259 strlcpy(desc->dtargd_native, argtype->type, in sdt_getargdesc() 261 if (argtype->xtype != NULL) in sdt_getargdesc() 262 strlcpy(desc->dtargd_xlate, argtype->xtype, in sdt_getargdesc() 289 struct sdt_argtype **argtype, **a_begin, **a_end; in sdt_kld_load_probes() local 302 for (argtype = a_begin; argtype < a_end; argtype++) { in sdt_kld_load_probes() 303 (*argtype)->probe->n_args++; in sdt_kld_load_probes() 304 TAILQ_INSERT_TAIL(&(*argtype)->probe->argtype_list, in sdt_kld_load_probes() [all …]
|
| /freebsd-14.2/sys/contrib/dev/iwlwifi/mvm/ |
| H A D | debugfs.h | 13 #define MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \ argument 18 argtype *arg = file->private_data; \ 28 #define _MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, buflen, argtype) \ argument 29 MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \ 37 #define _MVM_DEBUGFS_WRITE_FILE_OPS(name, buflen, argtype) \ argument 38 MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \
|
| /freebsd-14.2/contrib/ncurses/ncurses/base/ |
| H A D | MKlib_gen.sh | 302 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 = "" 349 if (argtype == "attr") { [all …]
|
| /freebsd-14.2/sys/contrib/dev/iwlwifi/fw/ |
| H A D | debugfs.c | 12 #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 = \ 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 101 FWRT_DEBUGFS_OPEN_WRAPPER(name, buflen, argtype) \ [all …]
|
| /freebsd-14.2/crypto/openssl/include/openssl/ |
| H A D | lhash.h | 236 #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 D | lhash.h.in | 238 #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-14.2/contrib/arm-optimized-routines/math/test/ |
| H A D | mathtest.c | 68 } argtype; member 117 int is_double_argtype(int argtype) { in is_double_argtype() argument 118 switch(argtype) { in is_double_argtype() 129 int is_single_argtype(int argtype) { in is_single_argtype() argument 130 switch(argtype) { in is_single_argtype() 163 int is_complex_argtype(int argtype) { in is_complex_argtype() argument 164 switch(argtype) { in is_complex_argtype() 719 int argtype=2, rettype=2; /* for do_op */ in parsetest() local 770 argtype = 0; in parsetest() 772 argtype = 1; in parsetest() [all …]
|
| /freebsd-14.2/sys/contrib/openzfs/cmd/zfs/ |
| H A D | zfs_iter.c | 502 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-14.2/sbin/fdisk/ |
| H A D | fdisk.c | 110 char argtype; member 989 command->args[command->n_args].argtype = *cp++; in parse_config_line() 1034 switch (command->args[i].argtype) { in process_geometry() 1047 current_line_number, command->args[i].argtype, in process_geometry() 1048 command->args[i].argtype); in process_geometry()
|
| /freebsd-14.2/lib/libdevstat/ |
| H A D | devstat.c | 95 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-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_mve.td | 1223 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-14.2/sys/contrib/openzfs/lib/libzfs/ |
| H A D | libzfs_util.c | 1152 zfs_path_to_zhandle(libzfs_handle_t *hdl, const char *path, zfs_type_t argtype) in zfs_path_to_zhandle() argument 1161 return (zfs_open(hdl, path, argtype)); in zfs_path_to_zhandle()
|
| H A D | libzfs.abi | 7912 <parameter type-id='2e45de5d' name='argtype'/>
|