taglinefilesource code
f15fs/file_table.cstruct file * f = file_table+0;
f17fs/file_table.cfor (i = 0; i++ < NR_FILE; f++)
f18fs/file_table.cif (!f->f_count) {
f19fs/file_table.cmemset(f,0,sizeof(*f));
f20fs/file_table.cf->f_count = 1;
f21fs/file_table.creturn f;
f346fs/open.cstruct file * f;
f355fs/open.cf = get_empty_filp();
f356fs/open.cif (!f)
f358fs/open.ccurrent->filp[fd] = f;
f359fs/open.cf->f_flags = flag;
f360fs/open.cf->f_mode = (flag+1) & O_ACCMODE;
f361fs/open.cif (f->f_mode)
f368fs/open.cf->f_count--;
f378fs/open.cf->f_count--;
f386fs/open.cf->f_inode = inode;
f387fs/open.cf->f_pos = 0;
f388fs/open.cf->f_reada = 0;
f389fs/open.cf->f_op = NULL;
f391fs/open.cf->f_op = inode->i_op->default_file_ops;
f392fs/open.cif (f->f_op && f->f_op->open) {
f393fs/open.ci = f->f_op->open(inode,f);
f396fs/open.cf->f_count--;
f401fs/open.cf->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
f215fs/pipe.cstruct file * f[2];
f221fs/pipe.cif (!(f[j] = get_empty_filp()))
f224fs/pipe.cf[0]->f_count--;
f230fs/pipe.ccurrent->filp[ fd[j]=i ] = f[j];
f236fs/pipe.cf[0]->f_count--;
f237fs/pipe.cf[1]->f_count--;
f243fs/pipe.cf[0]->f_count--;
f244fs/pipe.cf[1]->f_count--;
f247fs/pipe.cf[0]->f_inode = f[1]->f_inode = inode;
f248fs/pipe.cf[0]->f_pos = f[1]->f_pos = 0;
f249fs/pipe.cf[0]->f_flags = f[1]->f_flags = 0;
f250fs/pipe.cf[0]->f_op = &read_pipe_fops;
f251fs/pipe.cf[0]->f_mode = 1;    /* read */
f252fs/pipe.cf[1]->f_op = &write_pipe_fops;
f253fs/pipe.cf[1]->f_mode = 2;    /* write */
f134fs/stat.cstruct file * f;
f137fs/stat.cif (fd >= NR_OPEN || !(f=current->filp[fd]) || !(inode=f->f_inode))
f145fs/stat.cstruct file * f;
f148fs/stat.cif (fd >= NR_OPEN || !(f=current->filp[fd]) || !(inode=f->f_inode))
f143include/linux/tty.h#define _L_FLAG(tty,f)  ((tty)->termios->c_lflag & f)
f144include/linux/tty.h#define _I_FLAG(tty,f)  ((tty)->termios->c_iflag & f)
f145include/linux/tty.h#define _O_FLAG(tty,f)  ((tty)->termios->c_oflag & f)
f110kernel/FPU-emu/reg_compare.cint f;
f116kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f122kernel/FPU-emu/reg_compare.cf = SW_C0;
f125kernel/FPU-emu/reg_compare.cf = SW_C3;
f128kernel/FPU-emu/reg_compare.cf = 0;
f131kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f136kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f140kernel/FPU-emu/reg_compare.csetcc(f);
f147kernel/FPU-emu/reg_compare.cint f;
f151kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f157kernel/FPU-emu/reg_compare.cf = SW_C0;
f160kernel/FPU-emu/reg_compare.cf = SW_C3;
f163kernel/FPU-emu/reg_compare.cf = 0;
f166kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f171kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f175kernel/FPU-emu/reg_compare.csetcc(f);
f181kernel/FPU-emu/reg_compare.cint f;
f188kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f194kernel/FPU-emu/reg_compare.cf = SW_C0;
f197kernel/FPU-emu/reg_compare.cf = SW_C3;
f200kernel/FPU-emu/reg_compare.cf = 0;
f203kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f208kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f212kernel/FPU-emu/reg_compare.csetcc(f);
f85kernel/fork.cstruct file *f;
f150kernel/fork.cif ((f = p->filp[i]) != NULL)
f151kernel/fork.cf->f_count++;
f287zBoot/inflate.cunsigned f;                   /* i repeats in table every f entries */
f398zBoot/inflate.cif ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
f401zBoot/inflate.cf -= a + 1;           /* deduct codes from patterns left */
f405zBoot/inflate.cif ((f <<= 1) <= *++xp)
f407zBoot/inflate.cf -= *xp;           /* else deduct codes from patterns */
f461zBoot/inflate.cf = 1 << (k - w);
f462zBoot/inflate.cfor (j = i >> w; j < z; j += f)