Searched refs:args (Results 276 - 300 of 2507) sorted by relevance

<<11121314151617181920>>

/linux-master/scripts/
H A Dkernel-doc539 # confess "output_highlight got called with no args?\n";
569 my %args = %{$_[0]};
573 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
576 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
579 if ($args{'functiontype'} ne "") {
580 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
582 print ".B \"" . $args{'functio
[all...]
/linux-master/fs/xfs/libxfs/
H A Dxfs_da_btree.c85 struct xfs_da_args *args)
91 state->args = args;
92 state->mp = args->dp->i_mount;
125 struct xfs_da_args *args)
129 state->args = args;
130 state->mp = state->args->dp->i_mount;
459 struct xfs_da_args *args,
466 struct xfs_trans *tp = args
84 xfs_da_state_alloc( struct xfs_da_args *args) argument
123 xfs_da_state_reset( struct xfs_da_state *state, struct xfs_da_args *args) argument
458 xfs_da3_node_create( struct xfs_da_args *args, xfs_dablk_t blkno, int level, struct xfs_buf **bpp, int whichfork) argument
685 struct xfs_da_args *args; local
1196 struct xfs_da_args *args; local
1593 struct xfs_da_args *args; local
1821 struct xfs_da_args *args; local
1914 struct xfs_da_args *args; local
1995 struct xfs_da_args *args; local
2151 xfs_da_compname( struct xfs_da_args *args, const unsigned char *name, int len) argument
2161 xfs_da_grow_inode_int( struct xfs_da_args *args, xfs_fileoff_t *bno, int count) argument
2249 xfs_da_grow_inode( struct xfs_da_args *args, xfs_dablk_t *new_blkno) argument
2274 xfs_da3_swap_lastblock( struct xfs_da_args *args, xfs_dablk_t *dead_blknop, struct xfs_buf **dead_bufp) argument
2493 xfs_da_shrink_inode( struct xfs_da_args *args, xfs_dablk_t dead_blkno, struct xfs_buf *dead_buf) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/dma/
H A Dusernv50.c75 } *args; local
91 args = data;
94 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
96 "comp %d kind %02x\n", args->v0.version,
97 args->v0.priv, args->v0.part, args->v0.comp,
98 args->v0.kind);
99 user = args->v0.priv;
100 part = args
[all...]
H A Dusergf119.c73 } *args; local
89 args = data;
92 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
95 args->v0.version, args->v0.page, args->v0.kind);
96 kind = args->v0.kind;
97 page = args->v0.page;
H A Dusergv100.c72 } *args; local
88 args = data;
91 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
94 args->v0.version, args->v0.page, args->v0.kind);
95 kind = args->v0.kind != 0;
96 page = args->v0.page != 0;
/linux-master/arch/sparc/prom/
H A Dp1275.c28 extern void prom_cif_direct(unsigned long *args);
36 void p1275_cmd_direct(unsigned long *args) argument
45 prom_cif_direct(args);
/linux-master/tools/testing/selftests/tc-testing/plugin-lib/
H A DscapyPlugin.py26 if 'scapy' not in self.args.caseinfo:
27 if self.args.verbose:
32 lscapyinfo = self.args.caseinfo['scapy']
/linux-master/arch/openrisc/include/asm/
H A Dsyscall.h55 unsigned long *args)
57 memcpy(args, &regs->gpr[3], 6 * sizeof(args[0]));
54 syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, unsigned long *args) argument
/linux-master/drivers/gpu/drm/nouveau/dispnv50/
H A Doimm507b.c30 struct nvif_disp_chan_v0 args = { local
37 &args, sizeof(args), &wndw->wimm.base.user);
/linux-master/drivers/gpu/drm/nouveau/
H A Dnouveau_usif.c56 } *args = data; local
60 if ((ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true)))
63 switch (args->v0.oclass) {
71 } *args = data; local
73 if ((ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false)))
76 args->v0.priv = false;
89 object->route = args->v0.route;
90 object->token = args->v0.token;
91 args->v0.route = NVDRM_OBJECT_USIF;
92 args
[all...]
/linux-master/lib/
H A Dparser.c27 * @args: array of %MAX_OPT_ARGS &substring_t elements. Used to return match
32 * the location(s) of the arguments will be returned in the @args array.
34 static int match_one(char *s, const char *p, substring_t args[]) argument
66 args[argc].from = s;
75 args[argc].to = s + len;
79 simple_strtol(s, &args[argc].to, 0);
82 simple_strtoul(s, &args[argc].to, 0);
85 simple_strtoul(s, &args[argc].to, 8);
88 simple_strtoul(s, &args[argc].to, 16);
90 if (args[arg
115 match_token(char *s, const match_table_t table, substring_t args[]) argument
[all...]
/linux-master/tools/testing/selftests/mm/
H A Dpkey-helpers.h60 #define dprintf_level(level, args...) do { \
62 sigsafe_printf(args); \
64 #define dprintf0(args...) dprintf_level(0, args)
65 #define dprintf1(args...) dprintf_level(1, args)
66 #define dprintf2(args...) dprintf_level(2, args)
67 #define dprintf3(args...) dprintf_level(3, args)
[all...]
/linux-master/include/kunit/
H A Dstatic_stub.h14 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0)
28 * @args: All of the arguments passed to this function
59 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) \
71 return replacement(args); \
/linux-master/arch/mips/kernel/
H A Dsignal-common.h17 # define DEBUGP(fmt, args...) printk("%s: " fmt, __func__, ##args)
19 # define DEBUGP(fmt, args...)
/linux-master/drivers/gpu/drm/imagination/
H A Dpvr_hwrt.c42 struct drm_pvr_ioctl_create_hwrt_dataset_args *args,
50 hwrt->max_rts = args->layers;
54 hwrt->free_lists[i] = pvr_free_list_lookup(pvr_file, args->free_list_handles[i]);
233 struct drm_pvr_ioctl_create_hwrt_dataset_args *args,
236 struct drm_pvr_create_hwrt_geom_data_args *geom_data_args = &args->geom_data_args;
249 info.num_tiles_x = DIV_ROUND_UP(args->width, info.tile_size_x);
250 info.num_tiles_y = DIV_ROUND_UP(args->height, info.tile_size_y);
288 hwrt->common.isp_merge_lower_x = args->isp_merge_lower_x;
289 hwrt->common.isp_merge_lower_y = args->isp_merge_lower_y;
290 hwrt->common.isp_merge_upper_x = args
41 hwrt_init_kernel_structure(struct pvr_file *pvr_file, struct drm_pvr_ioctl_create_hwrt_dataset_args *args, struct pvr_hwrt_dataset *hwrt) argument
232 hwrt_init_common_fw_structure(struct pvr_file *pvr_file, struct drm_pvr_ioctl_create_hwrt_dataset_args *args, struct pvr_hwrt_dataset *hwrt) argument
357 hwrt_data_init_fw_structure(struct pvr_file *pvr_file, struct pvr_hwrt_dataset *hwrt, struct drm_pvr_ioctl_create_hwrt_dataset_args *args, struct drm_pvr_create_hwrt_rt_data_args *rt_data_args, struct pvr_hwrt_data *hwrt_data) argument
457 pvr_hwrt_dataset_create(struct pvr_file *pvr_file, struct drm_pvr_ioctl_create_hwrt_dataset_args *args) argument
[all...]
/linux-master/drivers/gpu/drm/i915/gem/
H A Di915_gem_busy.c116 struct drm_i915_gem_busy *args = data; local
124 obj = i915_gem_object_lookup_rcu(file, args->handle);
140 * args->busy =
145 args->busy = 0;
149 args->busy = 0;
153 args->busy |= busy_check_writer(fence);
156 args->busy |= busy_check_reader(fence);
/linux-master/arch/arm/mach-bcm/
H A Dbcm_kona_smc.c30 /* Map in the args buffer area */
121 u32 __iomem *args = bcm_smc_buffer; local
124 BUG_ON(!args);
127 writel_relaxed(data->arg0, args++);
128 writel_relaxed(data->arg1, args++);
129 writel_relaxed(data->arg2, args++);
130 writel(data->arg3, args);
/linux-master/tools/testing/selftests/bpf/progs/
H A Dkfunc_call_fail.c13 int kfunc_syscall_test_fail(struct syscall_test_args *args) argument
15 bpf_kfunc_call_test_mem_len_pass1(&args->data, sizeof(*args) + 1);
21 int kfunc_syscall_test_null_fail(struct syscall_test_args *args) argument
23 /* Must be called with args as a NULL pointer
29 * if (args)
33 bpf_kfunc_call_test_mem_len_pass1(args, sizeof(*args));
/linux-master/fs/squashfs/
H A Dsquashfs.h11 #define TRACE(s, args...) pr_debug("SQUASHFS: "s, ## args)
13 #define ERROR(s, args...) pr_err("SQUASHFS error: "s, ## args)
15 #define WARNING(s, args...) pr_warn("SQUASHFS: "s, ## args)
/linux-master/arch/x86/include/asm/shared/
H A Dtdx.h93 u64 __tdcall(u64 fn, struct tdx_module_args *args);
94 u64 __tdcall_ret(u64 fn, struct tdx_module_args *args);
95 u64 __tdcall_saved_ret(u64 fn, struct tdx_module_args *args);
98 u64 __tdx_hypercall(struct tdx_module_args *args);
106 struct tdx_module_args args = { local
115 return __tdx_hypercall(&args);
/linux-master/drivers/gpu/drm/etnaviv/
H A Detnaviv_gem_submit.c417 struct drm_etnaviv_gem_submit *args = data; local
430 if (args->pipe >= ETNA_MAX_PIPES)
433 gpu = priv->gpu[args->pipe];
437 if (args->stream_size % 4) {
439 args->stream_size);
443 if (args->exec_state != ETNA_PIPE_3D &&
444 args->exec_state != ETNA_PIPE_2D &&
445 args->exec_state != ETNA_PIPE_VG) {
446 DRM_ERROR("invalid exec_state: 0x%x\n", args->exec_state);
450 if (args
[all...]
/linux-master/drivers/mfd/
H A Dsi476x-cmd.c247 * @args: command arguments we are sending
248 * @argn: actual size of @args
259 const u8 args[],
281 memcpy(&data[1], args, argn);
350 struct si476x_rsq_status_args args = { local
360 err = si476x_core_cmd_fm_rsq_status(core, &args, NULL);
363 err = si476x_core_cmd_am_rsq_status(core, &args, NULL);
374 const uint8_t args[], size_t argn,
381 err = si476x_core_send_command(core, cmd, args, argn, resp, respn,
439 const u8 args[CMD_SET_PROPERTY_NARG local
257 si476x_core_send_command(struct si476x_core *core, const u8 command, const u8 args[], const int argn, u8 resp[], const int respn, const int usecs) argument
372 si476x_cmd_tune_seek_freq(struct si476x_core *core, uint8_t cmd, const uint8_t args[], size_t argn, uint8_t *resp, size_t respn) argument
466 const u8 args[CMD_GET_PROPERTY_NARGS] = { local
527 const u8 args[CMD_DIG_AUDIO_PIN_CFG_NARGS] = { local
576 const u8 args[CMD_ZIF_PIN_CFG_NARGS] = { local
633 const u8 args[CMD_IC_LINK_GPO_CTL_PIN_CFG_NARGS] = { local
664 const u8 args[CMD_ANA_AUDIO_PIN_CFG_NARGS] = { local
699 const u8 args[CMD_INTB_PIN_CFG_NARGS] = { local
715 const u8 args[CMD_INTB_PIN_CFG_NARGS] = { local
745 const u8 args[CMD_AM_RSQ_STATUS_NARGS] = { local
793 const u8 args[CMD_FM_ACF_STATUS_NARGS] = { local
829 const u8 args[CMD_AM_ACF_STATUS_NARGS] = { local
876 const u8 args[CMD_FM_SEEK_START_NARGS] = { local
908 const u8 args[CMD_FM_RDS_STATUS_NARGS] = { local
972 const u8 args[CMD_FM_RDS_BLOCKCOUNT_NARGS] = { local
998 const u8 args[CMD_FM_PHASE_DIVERSITY_NARGS] = { local
1052 const u8 args[CMD_AM_SEEK_START_NARGS] = { local
1070 const u8 args[CMD_POWER_UP_A10_NARGS] = { local
1093 const u8 args[CMD_POWER_UP_A20_NARGS] = { local
1124 const u8 args[CMD_POWER_DOWN_A20_NARGS] = { local
1139 const u8 args[CMD_AM_TUNE_FREQ_NARGS] = { local
1155 const u8 args[CMD_AM_TUNE_FREQ_NARGS] = { local
1172 const u8 args[CMD_FM_RSQ_STATUS_A10_NARGS] = { local
1225 const u8 args[CMD_FM_RSQ_STATUS_A30_NARGS] = { local
1280 const u8 args[CMD_FM_RSQ_STATUS_A30_NARGS] = { local
1340 const u8 args[CMD_FM_TUNE_FREQ_A10_NARGS] = { local
1358 const u8 args[CMD_FM_TUNE_FREQ_A20_NARGS] = { local
1473 si476x_core_cmd_power_up(struct si476x_core *core, struct si476x_power_up_args *args) argument
1482 si476x_core_cmd_power_down(struct si476x_core *core, struct si476x_power_down_args *args) argument
1491 si476x_core_cmd_fm_tune_freq(struct si476x_core *core, struct si476x_tune_freq_args *args) argument
1500 si476x_core_cmd_am_tune_freq(struct si476x_core *core, struct si476x_tune_freq_args *args) argument
1509 si476x_core_cmd_fm_rsq_status(struct si476x_core *core, struct si476x_rsq_status_args *args, struct si476x_rsq_status_report *report) argument
[all...]
/linux-master/drivers/media/usb/dvb-usb/
H A Dm920x.h8 #define deb(args...) dprintk(dvb_usb_m920x_debug,0x01,args)
/linux-master/tools/testing/selftests/ptrace/
H A Dget_syscall_info.c45 static const unsigned long args[][7] = { local
93 for (unsigned int i = 0; i < ARRAY_SIZE(args); ++i) {
94 syscall(args[i][0],
95 args[i][1], args[i][2], args[i][3],
96 args[i][4], args[i][5], args[i][6]);
120 (void *) &info.entry.args[
[all...]
/linux-master/tools/testing/selftests/x86/
H A Dptrace_syscall.c55 static void do_full_int80(struct syscall_args32 *args) argument
58 register unsigned long bp asm("bp") = args->arg5;
60 : "+a" (args->nr),
61 "+b" (args->arg0), "+c" (args->arg1), "+d" (args->arg2),
62 "+S" (args->arg3), "+D" (args->arg4), "+r" (bp)
64 args->arg5 = bp;
66 sys32_helper(args, int80_and_re
78 do_full_vsyscall32(struct syscall_args32 *args) argument
141 struct syscall_args32 args = { local
[all...]

Completed in 238 milliseconds

<<11121314151617181920>>