Home
last modified time | relevance | path

Searched refs:fop (Results 1 – 17 of 17) sorted by relevance

/linux-4.1.27/fs/
Dfile_table.c159 const struct file_operations *fop) in alloc_file() argument
171 likely(fop->read || fop->read_iter)) in alloc_file()
174 likely(fop->write || fop->write_iter)) in alloc_file()
177 file->f_op = fop; in alloc_file()
/linux-4.1.27/drivers/net/wireless/ath/wcn36xx/
Ddebug.c145 #define ADD_FILE(name, mode, fop, priv_data) \ argument
150 priv_data, fop); \
/linux-4.1.27/arch/arm/vfp/
Dvfpdouble.c1135 struct op *fop; in vfp_double_cpdo() local
1139 fop = (op == FOP_EXT) ? &fops_ext[FEXT_TO_IDX(inst)] : &fops[FOP_TO_IDX(op)]; in vfp_double_cpdo()
1145 if (fop->flags & OP_SD) in vfp_double_cpdo()
1153 if (fop->flags & OP_SM) in vfp_double_cpdo()
1162 if ((fop->flags & OP_SCALAR) || (FREG_BANK(dest) == 0)) in vfp_double_cpdo()
1170 if (!fop->fn) in vfp_double_cpdo()
1177 type = fop->flags & OP_SD ? 's' : 'd'; in vfp_double_cpdo()
1187 except = fop->fn(dest, dn, dm, fpscr); in vfp_double_cpdo()
Dvfpsingle.c1180 struct op *fop; in vfp_single_cpdo() local
1184 fop = (op == FOP_EXT) ? &fops_ext[FEXT_TO_IDX(inst)] : &fops[FOP_TO_IDX(op)]; in vfp_single_cpdo()
1192 if (fop->flags & OP_DD) in vfp_single_cpdo()
1201 if ((fop->flags & OP_SCALAR) || FREG_BANK(dest) == 0) in vfp_single_cpdo()
1209 if (!fop->fn) in vfp_single_cpdo()
1217 type = fop->flags & OP_DD ? 'd' : 's'; in vfp_single_cpdo()
1227 except = fop->fn(dest, sn, m, fpscr); in vfp_single_cpdo()
/linux-4.1.27/arch/x86/include/asm/
Duser_32.h59 unsigned short fop; member
Duser32.h23 unsigned short fop; member
Duser_64.h55 unsigned short fop; member
Dprocessor.h338 u16 fop; /* Last Instruction Opcode */ member
/linux-4.1.27/include/linux/
Dfile.h21 const struct file_operations *fop);
/linux-4.1.27/fs/fuse/
Dcontrol.c204 const struct file_operations *fop) in fuse_ctl_add_dentry() argument
227 inode->i_fop = fop; in fuse_ctl_add_dentry()
/linux-4.1.27/arch/x86/include/uapi/asm/
Dsigcontext.h141 __u16 fop; member
/linux-4.1.27/arch/x86/kernel/
Di387.c514 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16); in convert_from_fxsr()
535 fxsave->fop = (u16) ((u32) env->fcs >> 16); in convert_to_fxsr()
Dxsave.c68 fx->fop = 0; in __sanitize_i387_state()
/linux-4.1.27/arch/x86/um/
Dsignal.c94 env[4] = fxsave->fcs | ((unsigned long)fxsave->fop << 16); in convert_fxsr_to_user()
130 fxsave->fop = (unsigned short)((env[4] & 0xffff0000ul) >> 16); in convert_fxsr_from_user()
/linux-4.1.27/arch/x86/kvm/
Demulate.c309 static int fastop(struct x86_emulate_ctxt *ctxt, void (*fop)(struct fastop *));
965 void (*fop)(void) = (void *)em_setcc + 4 * (condition & 0xf); in test_cc() local
969 : "=a"(rc) : [fastop]"r"(fop), [flags]"r"(flags)); in test_cc()
4797 static int fastop(struct x86_emulate_ctxt *ctxt, void (*fop)(struct fastop *)) in fastop()
4801 fop += __ffs(ctxt->dst.bytes) * FASTOP_SIZE; in fastop()
4804 [fastop]"+S"(fop) in fastop()
4807 if (!fop) /* exception is returned in fop variable */ in fastop()
4970 void (*fop)(struct fastop *) = (void *)ctxt->execute; in x86_emulate_insn() local
4971 rc = fastop(ctxt, fop); in x86_emulate_insn()
Dx86.c6985 fpu->last_opcode = fxsave->fop; in kvm_arch_vcpu_ioctl_get_fpu()
7002 fxsave->fop = fpu->last_opcode; in kvm_arch_vcpu_ioctl_set_fpu()
/linux-4.1.27/fs/proc/
Dbase.c112 const struct file_operations *fop; member
121 .fop = FOP, \
2070 if (p->fop) in proc_pident_instantiate()
2071 inode->i_fop = p->fop; in proc_pident_instantiate()