| /linux/tools/perf/pmu-events/ |
| H A D | jevents.py | 15 _args = None variable 542 _args.output_file.write('};\n') 544 _args.output_file.write( 550 _args.output_file.write(event.to_c_string(metric=False)) 554 _args.output_file.write(f""" 561 _args.output_file.write(f"""{{ 567 _args.output_file.write('};\n\n') 598 _args.output_file.write('};\n') 600 _args.output_file.write( 606 _args.output_file.write(metric.to_c_string(metric=True)) [all …]
|
| H A D | arm64_metrics.py | 10 _args = None variable 14 global _args 33 _args = parser.parse_args() 42 if _args.metricgroups:
|
| H A D | amd_metrics.py | 13 _args = None variable 446 global _args 465 _args = parser.parse_args() 470 _zen_model = int(_args.model[6:]) 485 if _args.metricgroups:
|
| H A D | intel_metrics.py | 16 _args = None variable 799 if _args.model in [ 1075 global _args 1093 _args = parser.parse_args() 1122 if _args.metricgroups:
|
| /linux/tools/testing/selftests/kvm/include/ |
| H A D | ucall_common.h | 67 #define GUEST_PRINTF(_fmt, _args...) ucall_fmt(UCALL_PRINTF, _fmt, ##_args) argument 79 #define ____GUEST_ASSERT(_condition, _exp, _fmt, _args...) \ argument 82 ucall_assert(UCALL_ABORT, _exp, __FILE__, __LINE__, _fmt, ##_args); \ 85 #define __GUEST_ASSERT(_condition, _fmt, _args...) \ argument 86 ____GUEST_ASSERT(_condition, #_condition, _fmt, ##_args) 91 #define GUEST_FAIL(_fmt, _args...) \ argument 93 __FILE__, __LINE__, _fmt, ##_args)
|
| /linux/drivers/gpu/drm/nouveau/nvif/ |
| H A D | event.c | 61 struct nvif_event_v0 _args; in nvif_event_ctor_() local 65 args = &_args; in nvif_event_ctor_() 66 argc = sizeof(_args); in nvif_event_ctor_()
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | test_bpftool.py | 29 _args = ["bpftool"] 31 _args.append("-j") 32 _args.extend(args) 34 return subprocess.check_output(_args)
|
| /linux/drivers/md/ |
| H A D | dm-flakey.c | 61 static const struct dm_arg _args[] = { in parse_features() local 69 if (as->argc && (r = dm_read_arg_group(_args, as, &argc, &ti->error))) in parse_features() 139 r = dm_read_arg(_args + 1, as, &fc->corrupt_bio_byte, &ti->error); in parse_features() 161 r = dm_read_arg(_args + 2, as, &fc->corrupt_bio_value, &ti->error); in parse_features() 171 r = dm_read_arg(_args + 3, as, in parse_features() 189 r = dm_read_arg(_args + 4, as, &fc->random_read_corrupt, &ti->error); in parse_features() 205 r = dm_read_arg(_args + 4, as, &fc->random_write_corrupt, &ti->error); in parse_features() 260 static const struct dm_arg _args[] = { in flakey_ctr() local 296 r = dm_read_arg(_args, &as, &fc->up_interval, &ti->error); in flakey_ctr() 300 r = dm_read_arg(_args + 1, &as, &fc->down_interval, &ti->error); in flakey_ctr()
|
| H A D | dm-switch.c | 255 static const struct dm_arg _args[] = { in switch_ctr() local 269 r = dm_read_arg(_args, &as, &nr_paths, &ti->error); in switch_ctr() 273 r = dm_read_arg(_args + 1, &as, ®ion_size, &ti->error); in switch_ctr() 277 r = dm_read_arg_group(_args + 2, &as, &nr_optional_args, &ti->error); in switch_ctr()
|
| H A D | dm-mpath.c | 849 static const struct dm_arg _args[] = { in parse_path_selector() local 859 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error); in parse_path_selector() 991 static const struct dm_arg _args[] = { in parse_priority_group() local 1021 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error); in parse_priority_group() 1025 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error); in parse_priority_group() 1067 static const struct dm_arg _args[] = { in parse_hw_handler() local 1071 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error)) in parse_hw_handler() 1119 static const struct dm_arg _args[] = { in parse_features() local 1125 r = dm_read_arg_group(_args, as, &argc, &ti->error); in parse_features() 1148 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error); in parse_features() [all …]
|
| H A D | dm-cache-target.c | 2154 static const struct dm_arg _args[] = { in parse_features() local 2165 r = dm_read_arg_group(_args, as, &argc, error); in parse_features() 2210 static const struct dm_arg _args[] = { in parse_policy() local 2221 r = dm_read_arg_group(_args, as, &ca->policy_argc, error); in parse_policy()
|
| /linux/include/linux/ |
| H A D | tracepoint.h | 366 #define DEFINE_TRACE_FN(_name, _reg, _unreg, _proto, _args) \ 372 __DEFINE_TRACE_EXT(_name, &__tracepoint_ext_##_name, PARAMS(_proto), PARAMS(_args)); 374 #define DEFINE_TRACE_SYSCALL(_name, _reg, _unreg, _proto, _args) \ 380 __DEFINE_TRACE_EXT(_name, &__tracepoint_ext_##_name, PARAMS(_proto), PARAMS(_args)); 382 #define DEFINE_TRACE(_name, _proto, _args) \ 383 __DEFINE_TRACE_EXT(_name, NULL, PARAMS(_proto), PARAMS(_args)); 365 DEFINE_TRACE_FN(_name,_reg,_unreg,_proto,_args) global() argument 373 DEFINE_TRACE_SYSCALL(_name,_reg,_unreg,_proto,_args) global() argument 381 DEFINE_TRACE(_name,_proto,_args) global() argument
|
| /linux/tools/testing/selftests/timens/ |
| H A D | vfork_exec.c | 27 static void *tcheck(void *_args) in tcheck() argument 29 struct thread_args *args = _args; in tcheck()
|
| H A D | clock_nanosleep.c | 32 void *call_nanosleep(void *_args) in call_nanosleep() argument 34 struct thread_args *args = _args; in call_nanosleep()
|
| /linux/drivers/misc/sgi-xp/ |
| H A D | xpc.h | 220 #define XPC_UNPACK_ARG1(_args) (((u64)_args) & 0xffffffff) argument 221 #define XPC_UNPACK_ARG2(_args) ((((u64)_args) >> 32) & 0xffffffff) argument
|
| /linux/tools/perf/util/ |
| H A D | libdw.c | 77 static int libdw_a2l_cb(Dwarf_Die *die, void *_args) in libdw_a2l_cb() argument 79 struct libdw_a2l_cb_args *args = _args; in libdw_a2l_cb()
|
| H A D | thread.c | 473 static int thread__e_machine_callback(struct map *map, void *_args) in thread__e_machine_callback() argument 475 struct thread__e_machine_callback_args *args = _args; in thread__e_machine_callback()
|
| /linux/drivers/block/drbd/ |
| H A D | drbd_polymorph_printk.h | 59 __drbd_printk_ ## struct_name ## _args(), ## args); \ 81 __drbd_printk_ ## struct_name ## _args(), ## args); \
|
| /linux/lib/ |
| H A D | bug.c | 184 struct arch_va_list _args; in __warn_printf() local 185 va_list *args = __warn_args(&_args, regs); in __warn_printf()
|
| /linux/rust/macros/ |
| H A D | pinned_drop.rs | |
| /linux/rust/pin-init/internal/src/ |
| H A D | pinned_drop.rs | 10 _args: Nothing, in pinned_drop()
|
| /linux/drivers/md/dm-pcache/ |
| H A D | dm_pcache.c | 151 static const struct dm_arg _args[] = { in parse_cache_opts() local 162 ret = dm_read_arg_group(_args, as, &argc, error); in parse_cache_opts()
|
| /linux/include/uapi/drm/ |
| H A D | pvr_drm.h | 95 _mode(DRM_COMMAND_BASE + (_ioctl), struct drm_pvr_ioctl_##_data##_args)
|
| /linux/drivers/net/wireless/realtek/rtw88/ |
| H A D | regd.c | 16 #define rtw_dbg_regd_dump(_dev, _msg, _args...) \ argument 22 ##_args, \
|
| /linux/kernel/trace/ |
| H A D | trace.h | 2375 unsigned long *_args; \ 2383 _args = _re->args; \ 2385 _args = _e->args; \ 2387 _args; \
|