Searched refs:fip (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/sys/fs/fifofs/
H A Dfifo_vnops.c110 struct fifoinfo *fip; local
113 fip = vp->v_fifoinfo;
114 if (fip->fi_readers == 0 && fip->fi_writers == 0) {
116 pipe_dtor(fip->fi_pipe);
117 free(fip, M_VNODE);
139 struct fifoinfo *fip; local
150 if ((fip = vp->v_fifoinfo) == NULL) {
152 fip = malloc(sizeof(*fip), M_VNOD
270 struct fifoinfo *fip; local
315 struct fifoinfo *fip = vp->v_fifoinfo; local
[all...]
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dcrtfastmath.c90 long int fip; member in struct:__anon1238
/freebsd-11-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_lookup.c241 ctf_func_info(ctf_file_t *fp, ulong_t symidx, ctf_funcinfo_t *fip) argument
278 fip->ctc_return = *dp++;
279 fip->ctc_argc = n;
280 fip->ctc_flags = 0;
283 fip->ctc_flags |= CTF_FUNC_VARARG;
284 fip->ctc_argc--;
/freebsd-11-stable/contrib/gdb/gdb/
H A Dstabsread.c2158 read_member_functions (struct field_info *fip, char **pp, struct type *type,
2560 destr_fnlist->next = fip->fnlist;
2561 fip->fnlist = destr_fnlist;
2609 new_fnlist->next = fip->fnlist;
2610 fip->fnlist = new_fnlist;
2636 read_cpp_abbrev (struct field_info *fip, char **pp, struct type *type,
2667 fip->list->field.name =
2680 fip->list->field.name =
2686 fip->list->field.name =
2701 fip
2152 read_member_functions(struct field_info *fip, char **pp, struct type *type, struct objfile *objfile) argument
2630 read_cpp_abbrev(struct field_info *fip, char **pp, struct type *type, struct objfile *objfile) argument
2723 read_one_struct_field(struct field_info *fip, char **pp, char *p, struct type *type, struct objfile *objfile) argument
2861 read_struct_fields(struct field_info *fip, char **pp, struct type *type, struct objfile *objfile) argument
2959 read_baseclasses(struct field_info *fip, char **pp, struct type *type, struct objfile *objfile) argument
3082 read_tilde_fields(struct field_info *fip, char **pp, struct type *type, struct objfile *objfile) argument
3164 attach_fn_fields_to_type(struct field_info *fip, struct type *type) argument
3183 attach_fields_to_type(struct field_info *fip, struct type *type, struct objfile *objfile) argument
[all...]
H A Ddwarf2read.c2564 dwarf2_add_field (struct field_info *fip, struct die_info *die, argument
2577 new_field->next = fip->fields;
2578 fip->fields = new_field;
2579 fip->nfields++;
2594 fip->non_public_fields = 1;
2686 fip->non_public_fields = 1;
2727 fip->nbaseclasses++;
2734 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type, argument
2737 int nfields = fip->nfields;
2746 if (fip
2821 dwarf2_add_member_fn(struct field_info *fip, struct die_info *die, struct type *type, struct dwarf2_cu *cu) argument
2961 dwarf2_attach_fn_fields_to_type(struct field_info *fip, struct type *type, struct dwarf2_cu *cu) argument
[all...]
/freebsd-11-stable/sys/ufs/ufs/
H A Dufs_vnops.c1105 struct inode *fip, *tip, *tdp, *fdp; local
1225 fip = VTOI(fvp);
1246 ino = fip->i_number;
1247 if (fip->i_nlink >= LINK_MAX) {
1251 if ((fip->i_flags & (NOUNLINK | IMMUTABLE | APPEND))
1256 if ((fip->i_mode & IFMT) == IFDIR) {
1261 fdp == fip ||
1312 if (fip->i_effnlink == 0 || fdp->i_effnlink == 0 ||
1314 panic("Bad effnlink fip %p, fdp %p, tdp %p", fip, fd
[all...]
/freebsd-11-stable/sys/i386/linux/
H A Dlinux_ptrace.c166 l_long fip; member in struct:linux_pt_fpreg
179 linux_r->fip = bsd_r->fpr_env[3];
192 bsd_r->fpr_env[3] = linux_r->fip;
204 l_long fip; member in struct:linux_pt_fpxreg
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLinux_i386.cpp42 uint64_t fip; // Instruction Pointer member in struct:FPR_i386::__anon1513::__anon1514
46 uint32_t fioff; // FPU IP Offset (fip)
H A DRegisterContext_x86.h259 uint64_t fip; // Instruction Pointer member in struct:lldb_private::FXSAVE::__anon1531::__anon1532
263 uint32_t fioff; // FPU IP Offset (fip)
/freebsd-11-stable/contrib/gcc/
H A Dprotoize.c287 #define fip _info._fip macro
916 p->fip = NULL;
1277 if (hash_entry_p->fip)
1278 return hash_entry_p->fip;
1301 hash_entry_p->fip = file_p;
2328 file_info *file_p = hp->fip;
3928 const file_info *file_p = hp->fip;
/freebsd-11-stable/sys/dev/cxgbe/
H A Dt4_filter.c676 bcopy(f->fs.val.sip, fwr->fip, sizeof (fwr->fip));
/freebsd-11-stable/sys/dev/ocs_fc/
H A Dsli4.c4279 sli4->fip = func;
8347 if (!sli4->fip) {
8381 sli4->fip(sli4->fip_arg, &event);
H A Dsli4.h3244 int32_t (*fip)(void *, void *); member in struct:sli4_s
/freebsd-11-stable/contrib/ofed/libcxgb4/
H A Dt4fw_api.h193 __u8 fip[16]; member in struct:fw_filter_wr
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp.h1197 unsigned fip; member in struct:x87_fpu_state
/freebsd-11-stable/sys/dev/cxgbe/firmware/
H A Dt4fw_interface.h343 __u8 fip[16]; member in struct:fw_filter_wr
375 __u8 fip[16]; member in struct:fw_filter2_wr

Completed in 429 milliseconds