Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/compat/linuxkpi/common/src/
HDlinux_compat.c862 linux_get_fop(struct linux_file *filp, const struct file_operations **fop, in linux_get_fop() argument
869 *fop = filp->f_op; in linux_get_fop()
877 *fop = ldev->ops; in linux_get_fop()
922 const struct file_operations *fop; in linux_dev_fdopen() local
938 linux_get_fop(filp, &fop, &ldev); in linux_dev_fdopen()
940 if (fop->open != NULL) { in linux_dev_fdopen()
941 error = -fop->open(file->f_vnode, filp); in linux_dev_fdopen()
1091 const struct file_operations *fop, u_long cmd, caddr_t data, in linux_file_ioctl_sub() argument
1117 if (fop->compat_ioctl != NULL) { in linux_file_ioctl_sub()
1118 error = -OPW(fp, td, fop->compat_ioctl(filp, in linux_file_ioctl_sub()
[all …]
/freebsd-13-stable/tests/sys/opencrypto/
HDcryptodev.py141 fop = FindOp()
142 fop.crid = crid
143 fop.name = str_to_ascii(name)
144 s = array.array('B', fop.pack_hdr())
146 fop.unpack(s)
149 idx = fop.name.index(b'\x00')
150 name = fop.name[:idx]
152 name = fop.name
154 return fop.crid, name
/freebsd-13-stable/contrib/lua/src/
HDlvm.c891 #define op_arithI(L,iop,fop) { \ argument
901 pc++; setfltvalue(s2v(ra), fop(L, nb, fimm)); \
909 #define op_arithf_aux(L,v1,v2,fop) { \ argument
912 pc++; setfltvalue(s2v(ra), fop(L, n1, n2)); \
919 #define op_arithf(L,fop) { \ argument
922 op_arithf_aux(L, v1, v2, fop); }
928 #define op_arithfK(L,fop) { \ argument
931 op_arithf_aux(L, v1, v2, fop); }
937 #define op_arith_aux(L,v1,v2,iop,fop) { \ argument
942 else op_arithf_aux(L, v1, v2, fop); }
[all …]
/freebsd-13-stable/contrib/elftoolchain/libdwarf/
HDlibdwarf_frame.c918 Dwarf_Unsigned len, Dwarf_Unsigned *count, Dwarf_Frame_Op *fop, in _dwarf_frame_convert_inst() argument
927 if (fop != NULL) \ in _dwarf_frame_convert_inst()
928 fop[*count].fp_base_op = (x) >> 6; \ in _dwarf_frame_convert_inst()
935 if (fop != NULL) \ in _dwarf_frame_convert_inst()
936 fop[*count].fp_extended_op = (x); \ in _dwarf_frame_convert_inst()
943 if (fop != NULL) \ in _dwarf_frame_convert_inst()
944 fop[*count].fp_register = (x); \ in _dwarf_frame_convert_inst()
951 if (fop != NULL) \ in _dwarf_frame_convert_inst()
952 fop[*count].fp_offset = (x); \ in _dwarf_frame_convert_inst()
960 if (fop != NULL) \ in _dwarf_frame_convert_inst()
[all …]
/freebsd-13-stable/sys/netpfil/ipfilter/netinet/
HDip_htable.c205 iplookupflush_t fop; in ipf_htable_soft_fini() local
207 fop.iplf_type = IPLT_HASH; in ipf_htable_soft_fini()
208 fop.iplf_unit = IPL_LOGALL; in ipf_htable_soft_fini()
209 fop.iplf_arg = 0; in ipf_htable_soft_fini()
210 fop.iplf_count = 0; in ipf_htable_soft_fini()
211 *fop.iplf_name = '\0'; in ipf_htable_soft_fini()
212 ipf_htable_flush(softc, arg, &fop); in ipf_htable_soft_fini()
HDip_dstlist.c258 ipf_dstlist_flush(ipf_main_softc_t *softc, void *arg, iplookupflush_t *fop) in ipf_dstlist_flush() argument
265 if (fop->iplf_unit != IPLT_ALL && fop->iplf_unit != i) in ipf_dstlist_flush()
270 if ((*fop->iplf_name != '\0') && in ipf_dstlist_flush()
271 strncmp(fop->iplf_name, node->ipld_name, in ipf_dstlist_flush()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDRegisterContextNetBSD_i386.cpp39 uint16_t fop; // Last Instruction Opcode (fop) member
HDRegisterInfos_x86_64.h272 …DEFINE_FPR(fop, fop, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGN…
422 UPDATE_FPR_INFO(fop, fop);
HDRegisterInfos_x86_64_with_base.h255 …DEFINE_FPR(fop, fop, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGN…
407 UPDATE_FPR_INFO(fop, fop);
HDRegisterContextLinux_i386.cpp39 uint16_t fop; // Last Instruction Opcode (fop) member
HDRegisterContextDarwin_i386.cpp307 {DEFINE_FPU_UINT(fop),
634 value = fpu.fop; in ReadRegister()
751 fpu.fop = value.GetAsUInt16(); in WriteRegister()
HDRegisterInfos_i386.h239 DEFINE_FPR(fop, fop, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM,
HDRegisterContextDarwin_i386.h81 uint16_t fop; member
HDRegisterContextDarwin_x86_64.h86 uint16_t fop; // "fop" member
HDRegisterContextDarwin_x86_64.cpp361 {DEFINE_FPU_UINT(fop),
685 value = fpu.fop; in ReadRegister()
811 fpu.fop = value.GetAsUInt16(); in WriteRegister()
HDRegisterContext_x86.h273 uint16_t fop; // Last Instruction Opcode (fop) member
/freebsd-13-stable/sys/x86/linux/
HDlinux_x86_sigframe.h148 u_int16_t fop; member
/freebsd-13-stable/sys/i386/linux/
HDlinux_ptrace_machdep.c200 l_ushort fop; member
/freebsd-13-stable/share/dict/
HDweb271995 fop