HomeSort by: relevance | last modified time | path
    Searched refs:fip (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/sys/miscfs/fifofs/
fifo_vnops.c 129 struct fifoinfo *fip; local
136 if ((fip = vp->v_fifoinfo) == NULL) {
137 fip = kmem_alloc(sizeof(*fip), KM_SLEEP);
140 kmem_free(fip, sizeof(*fip));
143 fip->fi_readsock = rso;
147 kmem_free(fip, sizeof(*fip));
150 fip->fi_writesock = wso
484 struct fifoinfo *fip; local
528 struct fifoinfo *fip; local
    [all...]
  /src/sys/ufs/lfs/
lfs_kclean.c 308 FINFO *fip; local
319 fip = lffa->finfop;
324 ino = lfs_fi_getino(fs, fip);
325 gen = lfs_fi_getversion(fs, fip);
355 bytes = ((lfs_fi_getnblocks(fs, fip) - 1) << lfs_sb_getbshift(fs))
356 + lfs_fi_getlastlength(fs, fip);
370 for (j = 0; j < lfs_fi_getnblocks(fs, fip); ++j) {
371 if (j == lfs_fi_getnblocks(fs, fip) - 1)
372 size = lfs_fi_getlastlength(fs, fip);
379 lbn = lfs_fi_getblock(fs, fip, j)
413 FINFO *fip; local
642 FINFO *fip; local
    [all...]
lfs_rfw.c 562 FINFO *fip; local
570 fip = lffa->finfop;
574 ino = lfs_fi_getino(fs, fip);
576 for (j = 0; j < lfs_fi_getnblocks(fs, fip); ++j) {
577 if (j == lfs_fi_getnblocks(fs, fip) - 1)
578 size = lfs_fi_getlastlength(fs, fip);
582 lfs_fi_getblock(fs, fip, j) >= 0) {
584 lfs_fi_getversion(fs, fip),
585 lfs_fi_getblock(fs, fip, j),
644 FINFO *fip; local
    [all...]
lfs_debug.c 230 && lfs_fi_getnblocks(fs, sp->fip) > 512) {
232 lfs_fi_getnblocks(fs, sp->fip));
246 - ((char *)NEXT_FINFO(fs, sp->fip) - (char *)(sp->segsum))
lfs_accessors.h 717 #define FINFO_FULLSIZE(fs, fip) \
718 (FINFOSIZE(fs) + lfs_fi_getnblocks(fs, fip) * LFS_BLKPTRSIZE(fs))
720 #define NEXT_FINFO(fs, fip) \
721 ((FINFO *)((char *)(fip) + FINFO_FULLSIZE(fs, fip)))
725 lfs_fi_get##field(STRUCT_LFS *fs, FINFO *fip) \
728 return fip->u_64.fi_##field; \
730 return fip->u_32.fi_##field; \
734 lfs_fi_set##field(STRUCT_LFS *fs, FINFO *fip, type val) \
737 type *p = &fip->u_64.fi_##field;
    [all...]
lfs_segment.c 1327 vers = lfs_fi_getversion(fs, sp->fip);
1342 (uintmax_t)lfs_fi_getino(fs, sp->fip), bp->b_lblkno));
1353 bn = lfs_fi_getnblocks(fs, sp->fip);
1354 lfs_fi_setnblocks(fs, sp->fip, bn+1);
1355 lfs_fi_setblock(fs, sp->fip, bn, bp->b_lblkno + j);
1658 * nblocks = &sp->fip->fi_blocks[sp->fip->fi_nblocks] - sp->start_lbp;
1667 * 1. Get NEXT_FINFO(sp->fip). This is the same pointer as
1668 * &sp->fip->fi_blocks[sp->fip->fi_nblocks], just the wron
2080 FINFO *fip; local
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/i386/
crtfastmath.c 52 unsigned int fip; member in struct:__anon14250
  /src/external/gpl3/gcc.old/dist/libgcc/config/i386/
crtfastmath.c 52 unsigned int fip; member in struct:__anon16664
  /src/external/cddl/osnet/dist/common/ctf/
ctf_lookup.c 253 ctf_func_info(ctf_file_t *fp, ulong_t symidx, ctf_funcinfo_t *fip)
290 fip->ctc_return = *dp++;
291 fip->ctc_argc = n;
292 fip->ctc_flags = 0;
295 fip->ctc_flags |= CTF_FUNC_VARARG;
296 fip->ctc_argc--;
  /src/sbin/fsck_lfs/
segwrite.c 198 FINFO *fip; local
218 fip = sp->fip;
219 lfs_fi_setnblocks(fs, fip, 0);
220 lfs_fi_setino(fs, fip, ip->i_number);
221 LFS_IENTRY(ifp, fs, lfs_fi_getino(fs, fip), bp);
222 lfs_fi_setversion(fs, fip, lfs_if_getversion(fs, ifp));
230 fip = sp->fip;
231 if (lfs_fi_getnblocks(fs, fip) != 0)
    [all...]
pass6.c 253 * Use FIP records to update blocks, if the generation number matches.
256 pass6harvest(daddr_t daddr, FINFO *fip)
262 vp = vget(fs, lfs_fi_getino(fs, fip));
264 lfs_dino_getgen(fs, VTOI(vp)->i_din) == lfs_fi_getversion(fs, fip)) {
265 for (i = 0; i < lfs_fi_getnblocks(fs, fip); i++) {
266 size = (i == lfs_fi_getnblocks(fs, fip) - 1 ?
267 lfs_fi_getlastlength(fs, fip) : lfs_sb_getbsize(fs));
270 (uintmax_t)lfs_fi_getino(fs, fip),
271 (intmax_t)lfs_fi_getblock(fs, fip, i),
273 rfw_update_single(vp, lfs_fi_getblock(fs, fip, i), daddr, size)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
stabsread.c 4739 read_member_functions (struct stab_field_info *fip, const char **pp,
4779 new_fnlist = OBSTACK_ZALLOC (&fip->obstack, struct next_fnfieldlist);
4818 new_sublist = OBSTACK_ZALLOC (&fip->obstack, struct next_fnfield);
5099 destr_fnlist = OBSTACK_ZALLOC (&fip->obstack,
5133 destr_fnlist->next = fip->fnlist;
5134 fip->fnlist = destr_fnlist;
5175 new_fnlist->next = fip->fnlist;
5176 fip->fnlist = new_fnlist;
5198 read_cpp_abbrev (struct stab_field_info *fip, const char **pp,
5229 fip->list->field.set_name (obconcat (&objfile->objfile_obstack
    [all...]
ctfread.c 339 attach_fields_to_type (struct ctf_field_info *fip, struct type *type)
341 int nfields = fip->fields.size ();
352 struct ctf_nextfield &field = fip->fields[i];
391 struct ctf_field_info *fip = (struct ctf_field_info *) arg; local
392 struct ctf_context *ccp = fip->cur_context;
421 fip->fields.emplace_back (new_field);
432 struct ctf_field_info *fip = (struct ctf_field_info *) arg; local
435 struct ctf_context *ccp = fip->cur_context;
452 sym->set_type (fip->ptype);
456 fip->fields.emplace_back (new_field)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
stabsread.c 4742 read_member_functions (struct stab_field_info *fip, const char **pp,
4782 new_fnlist = OBSTACK_ZALLOC (&fip->obstack, struct next_fnfieldlist);
4821 new_sublist = OBSTACK_ZALLOC (&fip->obstack, struct next_fnfield);
5102 destr_fnlist = OBSTACK_ZALLOC (&fip->obstack,
5136 destr_fnlist->next = fip->fnlist;
5137 fip->fnlist = destr_fnlist;
5178 new_fnlist->next = fip->fnlist;
5179 fip->fnlist = new_fnlist;
5201 read_cpp_abbrev (struct stab_field_info *fip, const char **pp,
5232 fip->list->field.set_name (obconcat (&objfile->objfile_obstack
    [all...]
ctfread.c 339 attach_fields_to_type (struct ctf_field_info *fip, struct type *type)
341 int nfields = fip->fields.size ();
352 struct ctf_nextfield &field = fip->fields[i];
391 struct ctf_field_info *fip = (struct ctf_field_info *) arg; local
392 struct ctf_context *ccp = fip->cur_context;
421 fip->fields.emplace_back (new_field);
432 struct ctf_field_info *fip = (struct ctf_field_info *) arg; local
435 struct ctf_context *ccp = fip->cur_context;
452 sym->set_type (fip->ptype);
456 fip->fields.emplace_back (new_field)
    [all...]
  /src/sys/netcan/
can_pcb.c 388 struct can_filter *fip; local
396 fip = &canp->canp_filters[i];
397 if ((fmp->can_id & fip->can_mask) == fip->can_id)
  /src/tests/usr.bin/xlint/lint1/
c11.c 130 /* expect+2: warning: function declaration for 'fip' is not a prototype [287] */
132 int f(void), *fip(), (*pfi)();
  /src/games/gomoku/
bdinit.c 106 init_spot_frame(struct spotstr *sp, frame_index *fip)
113 frame_index fi = (*fip)++;
  /src/external/gpl3/binutils/dist/libctf/
ctf-types.c 1573 ctf_func_type_info (ctf_dict_t *fp, ctf_id_t type, ctf_funcinfo_t *fip)
1594 fip->ctc_return = tp->ctt_type;
1595 fip->ctc_flags = 0;
1596 fip->ctc_argc = LCTF_INFO_VLEN (fp, tp->ctt_info);
1603 if (fip->ctc_argc != 0 && args[fip->ctc_argc - 1] == 0)
1605 fip->ctc_flags |= CTF_FUNC_VARARG;
1606 fip->ctc_argc--;
ctf-lookup.c 1281 ctf_func_info (ctf_dict_t *fp, unsigned long symidx, ctf_funcinfo_t *fip)
1291 return ctf_func_type_info (fp, type, fip);
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-types.c 1573 ctf_func_type_info (ctf_dict_t *fp, ctf_id_t type, ctf_funcinfo_t *fip)
1594 fip->ctc_return = tp->ctt_type;
1595 fip->ctc_flags = 0;
1596 fip->ctc_argc = LCTF_INFO_VLEN (fp, tp->ctt_info);
1603 if (fip->ctc_argc != 0 && args[fip->ctc_argc - 1] == 0)
1605 fip->ctc_flags |= CTF_FUNC_VARARG;
1606 fip->ctc_argc--;
ctf-lookup.c 1281 ctf_func_info (ctf_dict_t *fp, unsigned long symidx, ctf_funcinfo_t *fip)
1291 return ctf_func_type_info (fp, type, fip);
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-types.c 1544 ctf_func_type_info (ctf_dict_t *fp, ctf_id_t type, ctf_funcinfo_t *fip)
1565 fip->ctc_return = tp->ctt_type;
1566 fip->ctc_flags = 0;
1567 fip->ctc_argc = LCTF_INFO_VLEN (fp, tp->ctt_info);
1574 if (fip->ctc_argc != 0 && args[fip->ctc_argc - 1] == 0)
1576 fip->ctc_flags |= CTF_FUNC_VARARG;
1577 fip->ctc_argc--;
  /src/external/gpl3/gdb/dist/libctf/
ctf-types.c 1573 ctf_func_type_info (ctf_dict_t *fp, ctf_id_t type, ctf_funcinfo_t *fip)
1594 fip->ctc_return = tp->ctt_type;
1595 fip->ctc_flags = 0;
1596 fip->ctc_argc = LCTF_INFO_VLEN (fp, tp->ctt_info);
1603 if (fip->ctc_argc != 0 && args[fip->ctc_argc - 1] == 0)
1605 fip->ctc_flags |= CTF_FUNC_VARARG;
1606 fip->ctc_argc--;
  /src/sys/compat/linux/arch/i386/
linux_ptrace.c 82 long fip; member in struct:linux_fpctx

Completed in 72 milliseconds

1 2