Searched refs:fp (Results 251 - 275 of 766) sorted by relevance

<<11121314151617181920>>

/linux-master/tools/objtool/arch/loongarch/
H A Dorc.c12 struct cfi_reg *fp = &cfi->regs[CFI_FP]; local
62 switch (fp->base) {
69 orc->fp_offset = fp->offset;
75 WARN_INSN(insn, "unknown FP base reg %d", fp->base);
126 return "fp";
164 printf(" fp:");
/linux-master/drivers/accessibility/speakup/
H A Dspeakup_soft.c190 static int softsynth_open(struct inode *inode, struct file *fp) argument
193 /*if ((fp->f_flags & O_ACCMODE) != O_RDONLY) */
205 static int softsynth_close(struct inode *inode, struct file *fp) argument
218 static ssize_t softsynthx_read(struct file *fp, char __user *buf, size_t count, argument
244 if (fp->f_flags & O_NONBLOCK) {
323 static ssize_t softsynth_read(struct file *fp, char __user *buf, size_t count, argument
326 return softsynthx_read(fp, buf, count, pos, 0);
329 static ssize_t softsynthu_read(struct file *fp, char __user *buf, size_t count, argument
332 return softsynthx_read(fp, buf, count, pos, 1);
337 static ssize_t softsynth_write(struct file *fp, cons argument
352 softsynth_poll(struct file *fp, struct poll_table_struct *wait) argument
[all...]
/linux-master/fs/ocfs2/dlmfs/
H A Ddlmfs.c119 struct dlmfs_filp_private *fp = NULL; local
136 fp = kmalloc(sizeof(*fp), GFP_NOFS);
137 if (!fp) {
141 fp->fp_lock_level = level;
153 kfree(fp);
157 file->private_data = fp;
167 struct dlmfs_filp_private *fp = file->private_data; local
174 if (fp) {
175 level = fp
[all...]
/linux-master/arch/nios2/include/asm/
H A Delf.h55 pr_reg[17] = regs->fp; \
71 pr_reg[31] = sw->fp; \
/linux-master/scripts/dtc/
H A Dsrcpos.c97 * @param fp Set to NULL if file did not open
100 static char *try_open(const char *dirname, const char *fname, FILE **fp) argument
109 *fp = fopen(fullname, "rb");
110 if (!*fp) {
124 * @param fp Returns pointer to opened FILE, or NULL on failure
127 static char *fopen_any_on_path(const char *fname, FILE **fp) argument
134 assert(fp);
137 fullname = try_open(cur_dir, fname, fp);
140 for (node = search_path_head; !*fp && node; node = node->next)
141 fullname = try_open(node->dirname, fname, fp);
[all...]
H A Dutil.c431 FILE *fp = errmsg ? stderr : stdout; local
437 fprintf(fp,
459 fprintf(fp, " ");
461 fprintf(fp, " -%c, ", long_opts[i].val);
465 fprintf(fp, "--%-*s", optlen, long_opts[i].name);
467 fprintf(fp, "--%s %s%*s", long_opts[i].name, a_arg,
471 fprintf(fp, "%s\n", opts_help[i]);
475 fprintf(fp, "\nError: %s\n", errmsg);
/linux-master/arch/arm/lib/
H A Dbacktrace-clang.S13 /* fp is 0 or stack frame */
51 * frame=> saved fp
58 * corrected pc => stmfd sp!, {..., fp, lr}
59 * add fp, sp, #x
99 stmfd sp!, {r4 - r9, fp, lr} @ Save an extra register
125 1002: ldr sv_fp, [frame, #0] @ get saved fp
183 1005: ldr r1, [sv_pc, #0] @ if stmfd sp!, {..., fp, lr}
195 teq sv_fp, #0 @ zero saved fp means
214 no_frame: ldmfd sp!, {r4 - r9, fp, pc}
227 .Lopcode: .word 0xe92d4800 >> 11 @ stmfd sp!, {... fp, l
[all...]
/linux-master/arch/alpha/kernel/
H A Dprocess.c258 memset(childti->fp, '\0', sizeof(childti->fp));
341 memcpy(fpu, task_thread_info(t)->fp, 32 * 8);
363 unsigned long fp, sp = task_thread_info(t)->pcb.ksp; local
366 fp = ((unsigned long*)sp)[6];
367 if (fp > sp && fp < base + 16*1024)
368 return *(unsigned long *)fp;
/linux-master/arch/m68k/lib/
H A Ddivsi3.S84 #define fp REG (fp) define
H A Dmulsi3.S82 #define fp REG (fp) define
H A Dumodsi3.S82 #define fp REG (fp) define
H A Dmodsi3.S84 #define fp REG (fp) define
/linux-master/arch/powerpc/include/asm/
H A Dkvm_booke.h94 vcpu->arch.fp.fpr[i][TS_FPROFFSET] = val;
99 return vcpu->arch.fp.fpr[i][TS_FPROFFSET];
/linux-master/arch/loongarch/include/asm/
H A Dftrace.h109 unsigned long fp; member in struct:fgraph_ret_regs
120 return ret_regs->fp;
/linux-master/fs/nfsd/
H A Dpnfs.h75 struct nfs4_file *fp);
92 struct nfs4_file *fp)
91 nfsd4_return_all_file_layouts(struct nfs4_client *clp, struct nfs4_file *fp) argument
H A Dnfs4layouts.c177 struct nfs4_file *fp = ls->ls_stid.sc_file; local
185 spin_lock(&fp->fi_lock);
187 spin_unlock(&fp->fi_lock);
231 struct nfs4_file *fp = parent->sc_file; local
240 get_nfs4_file(fp);
241 stp->sc_file = fp;
254 ls->ls_file = nfsd_file_get(fp->fi_deleg_file);
256 ls->ls_file = find_any_file(fp);
261 put_nfs4_file(fp);
271 spin_lock(&fp
400 struct nfs4_file *fp = ls->ls_stid.sc_file; local
420 struct nfs4_file *fp = ls->ls_stid.sc_file; local
606 nfsd4_return_all_file_layouts(struct nfs4_client *clp, struct nfs4_file *fp) argument
[all...]
/linux-master/tools/testing/selftests/mm/
H A Dvm_util.c144 bool check_for_pattern(FILE *fp, const char *pattern, char *buf, size_t len) argument
146 while (fgets(buf, len, fp)) {
179 FILE *fp; local
188 fp = fopen(SMAP_FILE_PATH, "r");
189 if (!fp)
192 if (!check_for_pattern(fp, addr_pattern, buffer, sizeof(buffer)))
199 if (!check_for_pattern(fp, pattern, buffer, sizeof(buffer)))
208 fclose(fp);
/linux-master/drivers/hid/
H A Dhid-roccat-lua.c26 static ssize_t lua_sysfs_read(struct file *fp, struct kobject *kobj, argument
48 static ssize_t lua_sysfs_write(struct file *fp, struct kobject *kobj, argument
68 static ssize_t lua_sysfs_write_ ## thingy(struct file *fp, \
72 return lua_sysfs_write(fp, kobj, buf, off, count, \
77 static ssize_t lua_sysfs_read_ ## thingy(struct file *fp, \
81 return lua_sysfs_read(fp, kobj, buf, off, count, \
/linux-master/drivers/net/ethernet/fungible/funeth/
H A Dfuneth_rx.c481 struct funeth_priv *fp = netdev_priv(q->netdev); local
484 xdpqs = rcu_dereference_bh(fp->xdpqs);
589 struct funeth_priv *fp = netdev_priv(q->netdev); local
601 err = fun_submit_admin_sync_cmd(fp->fdev, &cmd.common, NULL, 0,
619 struct funeth_priv *fp = netdev_priv(dev); local
636 q->dma_dev = &fp->pdev->dev;
679 struct funeth_priv *fp = netdev_priv(q->netdev); local
689 fp->rx_packets += q->stats.rx_pkts;
690 fp->rx_bytes += q->stats.rx_bytes;
691 fp
699 struct funeth_priv *fp = netdev_priv(q->netdev); local
767 struct funeth_priv *fp = netdev_priv(q->netdev); local
[all...]
/linux-master/fs/smb/server/
H A Dvfs.h79 int ksmbd_vfs_read(struct ksmbd_work *work, struct ksmbd_file *fp, size_t count,
81 int ksmbd_vfs_write(struct ksmbd_work *work, struct ksmbd_file *fp,
92 struct ksmbd_file *fp, loff_t size);
126 int ksmbd_vfs_empty_dir(struct ksmbd_file *fp);
128 int ksmbd_vfs_zero_data(struct ksmbd_work *work, struct ksmbd_file *fp,
131 int ksmbd_vfs_fqar_lseek(struct ksmbd_file *fp, loff_t start, loff_t length,
/linux-master/arch/x86/tools/
H A Drelocs.c366 static void read_ehdr(FILE *fp) argument
368 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1) {
419 if (fseek(fp, ehdr.e_shoff, SEEK_SET) < 0)
422 if (fread(&shdr, sizeof(shdr), 1, fp) != 1)
436 static void read_shdrs(FILE *fp) argument
446 if (fseek(fp, ehdr.e_shoff, SEEK_SET) < 0) {
452 if (fread(&shdr, sizeof(shdr), 1, fp) != 1)
471 static void read_strtabs(FILE *fp) argument
484 if (fseek(fp, sec->shdr.sh_offset, SEEK_SET) < 0) {
488 if (fread(sec->strtab, 1, sec->shdr.sh_size, fp)
496 read_symtabs(FILE *fp) argument
558 read_relocs(FILE *fp) argument
1178 process(FILE *fp, int use_real_mode, int as_text, int show_absolute_syms, int show_absolute_relocs, int show_reloc_info) argument
[all...]
/linux-master/net/unix/
H A Dgarbage.c168 if (UNIXCB(skb).fp) {
171 int nfd = UNIXCB(skb).fp->count;
172 struct file **fp = UNIXCB(skb).fp->fp; local
176 struct unix_sock *u = unix_get_socket(*fp++);
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_diag.c131 static int qib_diag_open(struct inode *in, struct file *fp);
132 static int qib_diag_release(struct inode *in, struct file *fp);
133 static ssize_t qib_diag_read(struct file *fp, char __user *data,
135 static ssize_t qib_diag_write(struct file *fp, const char __user *data,
151 static ssize_t qib_diagpkt_write(struct file *fp, const char __user *data,
508 static int qib_diag_open(struct inode *in, struct file *fp) argument
532 fp->private_data = dc;
542 * @fp: the diag data device file pointer
547 static ssize_t qib_diagpkt_write(struct file *fp, argument
676 static int qib_diag_release(struct inode *in, struct file *fp) argument
759 qib_diag_read(struct file *fp, char __user *data, size_t count, loff_t *off) argument
833 qib_diag_write(struct file *fp, const char __user *data, size_t count, loff_t *off) argument
[all...]
/linux-master/drivers/net/team/
H A Dteam_mode_loadbalance.c69 struct bpf_prog __rcu *fp; member in struct:lb_priv
188 struct bpf_prog *fp; local
192 fp = rcu_dereference_bh(lb_priv->fp);
193 if (unlikely(!fp))
195 lhash = bpf_prog_run(fp, skb);
284 struct bpf_prog *fp = NULL; local
294 err = bpf_prog_create(&fp, fprog);
304 orig_fp = rcu_dereference_protected(lb_priv->fp,
308 rcu_assign_pointer(lb_priv->fp, f
321 struct bpf_prog *fp; local
[all...]
/linux-master/drivers/net/ethernet/amd/
H A Ddeclance.c331 const unsigned short *fp; local
341 fp = from;
344 *tp++ = *fp++;
350 rfp = (const unsigned char *)fp;
360 fp = from;
362 *tp++ = *fp++;
363 *tp++ = *fp++;
364 *tp++ = *fp++;
365 *tp++ = *fp++;
366 *tp++ = *fp
390 const unsigned short *fp; local
[all...]

Completed in 195 milliseconds

<<11121314151617181920>>