taglinefilesource code
f72arch/alpha/math-emu/ieee-math.cunsigned long  f[2];  /* bit 55 in f[0] is the factor of 2^0*/
f174arch/alpha/math-emu/ieee-math.cif (!a->f[0] && !a->f[1])
f182arch/alpha/math-emu/ieee-math.cif ((a->f[0] & 0xff00000000000000) != 0 || a->f[1] != 0) {
f186arch/alpha/math-emu/ieee-math.cwhile ((a->f[0] & 0xff80000000000000) != 0x0080000000000000 ||
f187arch/alpha/math-emu/ieee-math.ca->f[1] != 0)
f192arch/alpha/math-emu/ieee-math.csticky = a->f[0] & 1;
f193arch/alpha/math-emu/ieee-math.csrl128(a->f);
f194arch/alpha/math-emu/ieee-math.ca->f[0] |= sticky;
f199arch/alpha/math-emu/ieee-math.cif (!(a->f[0] & 0x0080000000000000)) {
f203arch/alpha/math-emu/ieee-math.cwhile (!(a->f[0] & 0x0080000000000000)) {
f205arch/alpha/math-emu/ieee-math.ca->f[0] <<= 1;
f245arch/alpha/math-emu/ieee-math.cb->f[1] = 0;
f250arch/alpha/math-emu/ieee-math.cb->f[0] = (a & 0x000fffffffffffff) << 3;
f254arch/alpha/math-emu/ieee-math.cb->f[0] |= 1UL << 55;
f275arch/alpha/math-emu/ieee-math.cmake_s_ieee (long f, EXTENDED *a, unsigned long *b)
f279arch/alpha/math-emu/ieee-math.cif (!a->f[0] && !a->f[1]) {
f289arch/alpha/math-emu/ieee-math.cif (f & IEEE_TRAP_ENABLE_UNF) {
f296arch/alpha/math-emu/ieee-math.csticky = a->f[0] & 1;
f297arch/alpha/math-emu/ieee-math.csrl128(a->f);
f298arch/alpha/math-emu/ieee-math.cif (!a->f[0] && !a->f[0]) {
f303arch/alpha/math-emu/ieee-math.ca->f[0] |= sticky;
f310arch/alpha/math-emu/ieee-math.cif (f & IEEE_TRAP_ENABLE_OVF) {
f317arch/alpha/math-emu/ieee-math.cswitch (RM(f)) {
f349arch/alpha/math-emu/ieee-math.c((a->f[0] >> 3) & 0x000fffffe0000000));
f355arch/alpha/math-emu/ieee-math.cmake_t_ieee (long f, EXTENDED *a, unsigned long *b)
f359arch/alpha/math-emu/ieee-math.cif (!a->f[0] && !a->f[1]) {
f368arch/alpha/math-emu/ieee-math.cif (f & IEEE_TRAP_ENABLE_UNF) {
f375arch/alpha/math-emu/ieee-math.csticky = a->f[0] & 1;
f376arch/alpha/math-emu/ieee-math.csrl128(a->f);
f377arch/alpha/math-emu/ieee-math.cif (!a->f[0] && !a->f[0]) {
f382arch/alpha/math-emu/ieee-math.ca->f[0] |= sticky;
f389arch/alpha/math-emu/ieee-math.cif (f & IEEE_TRAP_ENABLE_OVF) {
f396arch/alpha/math-emu/ieee-math.cswitch (RM(f)) {
f427arch/alpha/math-emu/ieee-math.c((a->f[0] >> 3) & 0x000fffffffffffff));
f444arch/alpha/math-emu/ieee-math.cround_s_ieee (int f, EXTENDED *a, unsigned long *b)
f449arch/alpha/math-emu/ieee-math.cif (!(a->f[0] & 0xffffffff)) {
f450arch/alpha/math-emu/ieee-math.creturn make_s_ieee(f, a, b);  /* no rounding error */
f459arch/alpha/math-emu/ieee-math.cz1.f[0] = z2.f[0] = a->f[0] & 0xffffffff00000000;
f460arch/alpha/math-emu/ieee-math.cz1.f[1] = z2.f[1] = 0;
f461arch/alpha/math-emu/ieee-math.cz2.f[0] += 0x100000000;  /* next bigger S float number */
f463arch/alpha/math-emu/ieee-math.cswitch (RM(f)) {
f465arch/alpha/math-emu/ieee-math.cdiff1 = a->f[0] - z1.f[0];
f466arch/alpha/math-emu/ieee-math.cdiff2 = z2.f[0] - a->f[0];
f468arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z2, b);
f470arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z1, b);
f473arch/alpha/math-emu/ieee-math.cif (z1.f[0] & 0x100000000)
f474arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z2, b);
f476arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z1, b);
f480arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z1, b);
f485arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z1, b);
f487arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z2, b);
f493arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z2, b);
f495arch/alpha/math-emu/ieee-math.cres = make_s_ieee(f, &z1, b);
f504arch/alpha/math-emu/ieee-math.cround_t_ieee (int f, EXTENDED *a, unsigned long *b)
f509arch/alpha/math-emu/ieee-math.cif (!(a->f[0] & 0x7)) {
f511arch/alpha/math-emu/ieee-math.creturn make_t_ieee(f, a, b);
f516arch/alpha/math-emu/ieee-math.cz1.f[0] = z2.f[0] = a->f[0] & ~0x7;
f517arch/alpha/math-emu/ieee-math.cz1.f[1] = z2.f[1] = 0;
f518arch/alpha/math-emu/ieee-math.cz2.f[0] += (1 << 3);
f521arch/alpha/math-emu/ieee-math.cswitch (RM(f)) {
f523arch/alpha/math-emu/ieee-math.cdiff1 = a->f[0] - z1.f[0];
f524arch/alpha/math-emu/ieee-math.cdiff2 = z2.f[0] - a->f[0];
f526arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z2, b);
f528arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z1, b);
f531arch/alpha/math-emu/ieee-math.cif (z1.f[0] & (1 << 3))
f532arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z2, b);
f534arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z1, b);
f538arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z1, b);
f543arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z1, b);
f545arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z2, b);
f551arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z2, b);
f553arch/alpha/math-emu/ieee-math.cres = make_t_ieee(f, &z1, b);
f568arch/alpha/math-emu/ieee-math.cfa = op_a->f[0];
f569arch/alpha/math-emu/ieee-math.cfb = op_b->f[0];
f575arch/alpha/math-emu/ieee-math.cif (op_a->f[0] & mask) {
f582arch/alpha/math-emu/ieee-math.cif (op_b->f[0] & mask) {
f591arch/alpha/math-emu/ieee-math.cop_c->f[1] = 0;
f596arch/alpha/math-emu/ieee-math.cop_c->f[0] = fc;
f615arch/alpha/math-emu/ieee-math.cieee_CVTST (int f, unsigned long a, unsigned long *b)
f629arch/alpha/math-emu/ieee-math.creturn round_t_ieee(f, &temp, b);
f646arch/alpha/math-emu/ieee-math.cieee_CVTTS (int f, unsigned long a, unsigned long *b)
f660arch/alpha/math-emu/ieee-math.creturn round_s_ieee(f, &temp, b);
f677arch/alpha/math-emu/ieee-math.cieee_CVTQS (int f, unsigned long a, unsigned long *b)
f682arch/alpha/math-emu/ieee-math.cop_b.f[0] = a;
f683arch/alpha/math-emu/ieee-math.cop_b.f[1] = 0;
f686arch/alpha/math-emu/ieee-math.cop_b.f[0] = -a;
f690arch/alpha/math-emu/ieee-math.creturn round_s_ieee(f, &op_b, b);
f707arch/alpha/math-emu/ieee-math.cieee_CVTQT (int f, unsigned long a, unsigned long *b)
f712arch/alpha/math-emu/ieee-math.cop_b.f[0] = a;
f713arch/alpha/math-emu/ieee-math.cop_b.f[1] = 0;
f716arch/alpha/math-emu/ieee-math.cop_b.f[0] = -a;
f720arch/alpha/math-emu/ieee-math.creturn round_t_ieee(f, &op_b, b);
f737arch/alpha/math-emu/ieee-math.cieee_CVTTQ (int f, unsigned long a, unsigned long *b)
f755arch/alpha/math-emu/ieee-math.cov |= temp.f[1] >> 63;
f756arch/alpha/math-emu/ieee-math.csll128(temp.f);
f758arch/alpha/math-emu/ieee-math.cif (ov || (temp.f[1] & 0xffc0000000000000))
f764arch/alpha/math-emu/ieee-math.cuv = temp.f[0] & 1;    /* save sticky bit */
f765arch/alpha/math-emu/ieee-math.csrl128(temp.f);
f766arch/alpha/math-emu/ieee-math.ctemp.f[0] |= uv;
f769arch/alpha/math-emu/ieee-math.c*b = ((temp.f[1] << 9) | (temp.f[0] >> 55)) & 0x7fffffffffffffff;
f774arch/alpha/math-emu/ieee-math.cswitch (RM(f)) {
f776arch/alpha/math-emu/ieee-math.cif (temp.f[0] & 0x0040000000000000) {
f777arch/alpha/math-emu/ieee-math.cmidway = (temp.f[0] & 0x003fffffffffffff) == 0;
f778arch/alpha/math-emu/ieee-math.cif ((midway && (temp.f[0] & 0x0080000000000000)) ||
f785arch/alpha/math-emu/ieee-math.cif ((temp.f[0] & 0x003fffffffffffff) != 0)
f790arch/alpha/math-emu/ieee-math.cif ((temp.f[0] & 0x003fffffffffffff) != 0)
f798arch/alpha/math-emu/ieee-math.cif ((temp.f[0] & 0x003fffffffffffff) != 0)
f823arch/alpha/math-emu/ieee-math.cop_a.f[0] == op_b.f[0] && op_a.f[1] == op_b.f[1]) ||
f848arch/alpha/math-emu/ieee-math.ccmp128(op_a.f, op_b.f) > 0))) ||
f851arch/alpha/math-emu/ieee-math.ccmp128(op_a.f,op_b.f) < 0))))
f875arch/alpha/math-emu/ieee-math.ccmp128(op_a.f,op_b.f) >= 0))) ||
f878arch/alpha/math-emu/ieee-math.ccmp128(op_a.f,op_b.f) <= 0))))
f907arch/alpha/math-emu/ieee-math.cieee_ADDS (int f, unsigned long a, unsigned long b, unsigned long *c)
f947arch/alpha/math-emu/ieee-math.creturn round_s_ieee(f, &op_c, c);
f956arch/alpha/math-emu/ieee-math.cieee_ADDT (int f, unsigned long a, unsigned long b, unsigned long *c)
f996arch/alpha/math-emu/ieee-math.creturn round_t_ieee(f, &op_c, c);
f1005arch/alpha/math-emu/ieee-math.cieee_SUBS (int f, unsigned long a, unsigned long b, unsigned long *c)
f1046arch/alpha/math-emu/ieee-math.creturn round_s_ieee(f, &op_c, c);
f1055arch/alpha/math-emu/ieee-math.cieee_SUBT (int f, unsigned long a, unsigned long b, unsigned long *c)
f1096arch/alpha/math-emu/ieee-math.creturn round_t_ieee(f, &op_c, c);
f1105arch/alpha/math-emu/ieee-math.cieee_MULS (int f, unsigned long a, unsigned long b, unsigned long *c)
f1147arch/alpha/math-emu/ieee-math.cmul64(op_a.f[0], op_b.f[0], op_c.f);
f1152arch/alpha/math-emu/ieee-math.creturn round_s_ieee(f, &op_c, c);
f1161arch/alpha/math-emu/ieee-math.cieee_MULT (int f, unsigned long a, unsigned long b, unsigned long *c)
f1204arch/alpha/math-emu/ieee-math.cmul64(op_a.f[0], op_b.f[0], op_c.f);
f1209arch/alpha/math-emu/ieee-math.creturn round_t_ieee(f, &op_c, c);
f1218arch/alpha/math-emu/ieee-math.cieee_DIVS (int f, unsigned long a, unsigned long b, unsigned long *c)
f1267arch/alpha/math-emu/ieee-math.cop_a.f[1] = op_a.f[0];
f1268arch/alpha/math-emu/ieee-math.cop_a.f[0] = 0;
f1269arch/alpha/math-emu/ieee-math.cdiv128(op_a.f, op_b.f, op_c.f);
f1272arch/alpha/math-emu/ieee-math.cop_c.f[0] |= STICKY_S;
f1275arch/alpha/math-emu/ieee-math.creturn round_s_ieee(f, &op_c, c);
f1284arch/alpha/math-emu/ieee-math.cieee_DIVT (int f, unsigned long a, unsigned long b, unsigned long *c)
f1334arch/alpha/math-emu/ieee-math.cop_a.f[1] = op_a.f[0];
f1335arch/alpha/math-emu/ieee-math.cop_a.f[0] = 0;
f1336arch/alpha/math-emu/ieee-math.cdiv128(op_a.f, op_b.f, op_c.f);
f1339arch/alpha/math-emu/ieee-math.cop_c.f[0] |= STICKY_T;
f1342arch/alpha/math-emu/ieee-math.creturn round_t_ieee(f, &op_c, c);
f13arch/alpha/math-emu/ieee-math.h#define RM(f)    (((f) >> ROUND_SHIFT) & 0x3)
f178arch/i386/math-emu/reg_compare.cint f, c;
f185arch/i386/math-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f191arch/i386/math-emu/reg_compare.cf = SW_C0;
f194arch/i386/math-emu/reg_compare.cf = SW_C3;
f197arch/i386/math-emu/reg_compare.cf = 0;
f200arch/i386/math-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f205arch/i386/math-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f209arch/i386/math-emu/reg_compare.csetcc(f);
f220arch/i386/math-emu/reg_compare.cint f, c;
f241arch/i386/math-emu/reg_compare.cf = SW_C0;
f244arch/i386/math-emu/reg_compare.cf = SW_C3;
f247arch/i386/math-emu/reg_compare.cf = 0;
f250arch/i386/math-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f255arch/i386/math-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f259arch/i386/math-emu/reg_compare.csetcc(f);
f270arch/i386/math-emu/reg_compare.cint f, c;
f296arch/i386/math-emu/reg_compare.cf = SW_C0;
f299arch/i386/math-emu/reg_compare.cf = SW_C3;
f302arch/i386/math-emu/reg_compare.cf = 0;
f305arch/i386/math-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f310arch/i386/math-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f314arch/i386/math-emu/reg_compare.csetcc(f);
f3262drivers/block/floppy.cstruct format_descr f;
f3366drivers/block/floppy.creturn do_format(device, &inparam.f);
f1468drivers/block/ide-cd.cvoid lba_to_msf (int lba, byte *m, byte *s, byte *f)
f1475drivers/block/ide-cd.c*f = lba % CD_FRAMES;
f1480drivers/block/ide-cd.cint msf_to_lba (byte m, byte s, byte f)
f1482drivers/block/ide-cd.creturn (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_BLOCK_OFFSET;
f403drivers/cdrom/cm206.cinline int f_s_m2lba(uch f, uch s, uch m)
f405drivers/cdrom/cm206.creturn f + 75*(s-2 + 60*m);
f51drivers/char/ftape/tracing.h#define TRACEx6(l,m,a,b,c,d,e,f)  trace_dummy()
f83drivers/char/ftape/tracing.h#define TRACEx6(l,m,a,b,c,d,e,f) TRACE_(l,printk(m".\n",a,b,c,d,e,f))
f539drivers/char/n_tty.cchar *f, flags = 0;
f560drivers/char/n_tty.cfor (i=count, p = cp, f = fp; i; i--, p++) {
f561drivers/char/n_tty.cif (f)
f562drivers/char/n_tty.cflags = *f++;
f470drivers/char/random.c#define MD5STEP(f, w, x, y, z, data, s) \
f471drivers/char/random.c( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )
f176drivers/char/tty_io.cstruct file *f;
f179drivers/char/tty_io.cfor (f = first_file, i=0; i<nr_files; i++, f = f->f_next) {
f180drivers/char/tty_io.cif (!f->f_count)
f182drivers/char/tty_io.cif (f->private_data == tty) {
f481drivers/isdn/teles/isdnl2.cint             f;
f487drivers/isdn/teles/isdnl2.cf = *data & 0x10;
f490drivers/isdn/teles/isdnl2.cif (f) {
f512drivers/isdn/teles/isdnl2.cint             f;
f518drivers/isdn/teles/isdnl2.cf = *data & 0x10;
f521drivers/isdn/teles/isdnl2.cif (f) {
f662drivers/isdn/teles/q931.cint             (*f) (char *, byte *);
f859drivers/isdn/teles/q931.cdp += ielist[i].f(dp, buf);
f154drivers/net/bsd_comp.c} f;
f702drivers/net/bsd_comp.cif (dictp->f.fcode == fcode)
f724drivers/net/bsd_comp.cwhile (dictp->f.fcode != fcode);
f761drivers/net/bsd_comp.cdictp->f.fcode = fcode;
f1060drivers/net/bsd_comp.c*--p    = dictp->f.hs.suffix;
f1061drivers/net/bsd_comp.cfinchar = dictp->f.hs.prefix;
f1129drivers/net/bsd_comp.cdictp->f.fcode = fcode;
f33drivers/net/i82586.h#define  toff(t,p,f)   (unsigned short)((void *)(&((t *)((void *)0 + (p)))->f) - (void *)0)
f121drivers/net/i82586.h#define  scboff(p,f)   toff(scb_t, p, f)
f175drivers/net/i82586.h#define  acoff(p,f)   toff(ach_t, p, f)
f363drivers/net/i82586.h#define  rbdoff(p,f)   toff(rbd_t, p, f)
f401drivers/net/i82586.h#define  fdoff(p,f)   toff(fd_t, p, f)
f497drivers/net/ni65.cint i,f=0;
f501drivers/net/ni65.cf = 1;
f502drivers/net/ni65.celse if(f)
f360drivers/net/plip.cplip_func f;
f364drivers/net/plip.cf = connection_state_table[nl->connection];
f365drivers/net/plip.cif ((r = (*f)(dev, nl, snd, rcv)) != OK
f115drivers/net/wavelan.h#define  mmwoff(p,f)   (unsigned short)((void *)(&((mmw_t *)((void *)0 + (p)))->f) - (void *)0)
f156drivers/net/wavelan.h#define  mmroff(p,f)   (unsigned short)((void *)(&((mmr_t *)((void *)0 + (p)))->f) - (void *)0)
f201drivers/net/wavelan.h#define  hoff(p,f)   (unsigned short)((void *)(&((ha_t *)((void *)0 + (p)))->f) - (void *)0)
f366drivers/net/wic.cwic_func f;
f370drivers/net/wic.cf = connection_state_table[nl->connection];
f371drivers/net/wic.cif ((r = (*f)(dev, nl, snd, rcv)) != OK
f2584drivers/scsi/advansys.cSTATIC void   asc_prt_hex(char *f, uchar *, int);
f4924drivers/scsi/advansys.casc_prt_hex(char *f, uchar *s, int l)
f4931drivers/scsi/advansys.cprintk("%s: (%d bytes)\n", f, l);
f729drivers/sound/opl3.cint             f, octave;
f738drivers/sound/opl3.cf = freq;
f742drivers/sound/opl3.cif (f == 0)
f744drivers/sound/opl3.celse if (f < 261)
f746drivers/sound/opl3.cwhile (f < 261)
f749drivers/sound/opl3.cf <<= 1;
f752drivers/sound/opl3.celse if (f > 493)
f754drivers/sound/opl3.cwhile (f > 493)
f757drivers/sound/opl3.cf >>= 1;
f114fs/exec.cstruct file *f, **fpp;
f118fs/exec.cf = get_empty_filp();
f119fs/exec.cif (!f)
f127fs/exec.cf->f_count--;
f132fs/exec.c*fpp = f;
f133fs/exec.cf->f_flags = mode;
f134fs/exec.cf->f_mode = (mode+1) & O_ACCMODE;
f135fs/exec.cf->f_inode = inode;
f136fs/exec.cf->f_pos = 0;
f137fs/exec.cf->f_reada = 0;
f138fs/exec.cf->f_op = inode->i_op->default_file_ops;
f139fs/exec.cif (f->f_op->open) {
f140fs/exec.cerror = f->f_op->open(inode,f);
f143fs/exec.cf->f_count--;
f104fs/file_table.cstruct file * f;
f111fs/file_table.cfor (f = first_file, i=0; i < nr_files; i++, f = f->f_next)
f112fs/file_table.cif (!f->f_count) {
f113fs/file_table.cremove_file_free(f);
f114fs/file_table.cmemset(f,0,sizeof(*f));
f115fs/file_table.cput_last_free(f);
f116fs/file_table.cf->f_count = 1;
f117fs/file_table.cf->f_version = ++event;
f118fs/file_table.creturn f;
f499fs/open.cstruct file * f;
f502fs/open.cf = get_empty_filp();
f503fs/open.cif (!f)
f505fs/open.cf->f_flags = flag = flags;
f506fs/open.cf->f_mode = (flag+1) & O_ACCMODE;
f507fs/open.cif (f->f_mode)
f514fs/open.cif (f->f_mode & FMODE_WRITE) {
f520fs/open.cf->f_inode = inode;
f521fs/open.cf->f_pos = 0;
f522fs/open.cf->f_reada = 0;
f523fs/open.cf->f_op = NULL;
f525fs/open.cf->f_op = inode->i_op->default_file_ops;
f526fs/open.cif (f->f_op && f->f_op->open) {
f527fs/open.cerror = f->f_op->open(inode,f);
f531fs/open.cf->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
f540fs/open.ccurrent->files->fd[fd] = f;
f546fs/open.cif (f->f_op && f->f_op->release)
f547fs/open.cf->f_op->release(inode,f);
f549fs/open.cif (f->f_mode & FMODE_WRITE)
f554fs/open.cf->f_count--;
f414fs/pipe.cstruct file *f[2];
f422fs/pipe.cif (!(f[j] = get_empty_filp()))
f427fs/pipe.cf[0]->f_count--;
f433fs/pipe.ccurrent->files->fd[ fd[j]=i ] = f[j];
f438fs/pipe.cf[0]->f_count--;
f439fs/pipe.cf[1]->f_count--;
f444fs/pipe.cf[0]->f_inode = f[1]->f_inode = inode;
f445fs/pipe.cf[0]->f_pos = f[1]->f_pos = 0;
f446fs/pipe.cf[0]->f_flags = O_RDONLY;
f447fs/pipe.cf[0]->f_op = &read_pipe_fops;
f448fs/pipe.cf[0]->f_mode = 1;    /* read */
f449fs/pipe.cf[1]->f_flags = O_WRONLY;
f450fs/pipe.cf[1]->f_op = &write_pipe_fops;
f451fs/pipe.cf[1]->f_mode = 2;    /* write */
f191fs/stat.cstruct file * f;
f198fs/stat.cif (fd >= NR_OPEN || !(f=current->files->fd[fd]) || !(inode=f->f_inode))
f208fs/stat.cstruct file * f;
f215fs/stat.cif (fd >= NR_OPEN || !(f=current->files->fd[fd]) || !(inode=f->f_inode))
f446include/asm-i386/string.h#define memcpy(t, f, n) \
f448include/asm-i386/string.h__constant_memcpy((t),(f),(n)) : \
f449include/asm-i386/string.h__memcpy((t),(f),(n)))
f45include/linux/ext2_fs.h#  define ext2_debug(f, a...)  { \
f48include/linux/ext2_fs.hprintk (f, ## a); \
f51include/linux/ext2_fs.h#  define ext2_debug(f, a...)  /**/
f95include/linux/sonycd535.h#define SONY_BLOCK_NUMBER(m,s,f) (((m)*60L+(s))*75L+(f))
f510include/linux/tpqic02.h#define TPQDBG(f)  ((QIC02_TAPE_DEBUG) & (TPQD_##f))
f132include/linux/tqueue.hvoid (*f) (void *);
f135include/linux/tqueue.hf      = p -> routine;
f139include/linux/tqueue.h(*f)(arg);
f127include/linux/tty.h#define _I_FLAG(tty,f)  ((tty)->termios->c_iflag & (f))
f128include/linux/tty.h#define _O_FLAG(tty,f)  ((tty)->termios->c_oflag & (f))
f129include/linux/tty.h#define _C_FLAG(tty,f)  ((tty)->termios->c_cflag & (f))
f130include/linux/tty.h#define _L_FLAG(tty,f)  ((tty)->termios->c_lflag & (f))
f27include/linux/wrapper.h#define file_get_flags(f) f->f_flags
f26include/net/netlink.h#define ip_netlink_msg(a,b,c,d,e,f,g)
f173kernel/fork.cstruct file * f = current->files->fd[i];
f174kernel/fork.cif (f)
f175kernel/fork.cf->f_count++;
f176kernel/fork.ctsk->files->fd[i] = f;
f284lib/inflate.cunsigned f;                   /* i repeats in table every f entries */
f396lib/inflate.cif ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
f399lib/inflate.cf -= a + 1;           /* deduct codes from patterns left */
f403lib/inflate.cif ((f <<= 1) <= *++xp)
f405lib/inflate.cf -= *xp;           /* else deduct codes from patterns */
f458lib/inflate.cf = 1 << (k - w);
f459lib/inflate.cfor (j = i >> w; j < z; j += f)
f1190net/bridge/br.cstruct fdb *f;
f1205net/bridge/br.cf = (struct fdb *)kmalloc(sizeof(struct fdb), 
f1208net/bridge/br.cif (!f) {
f1212net/bridge/br.cf->port = port;  /* source port */
f1213net/bridge/br.cmemcpy(f->ula, skb->h.eth->h_source, 6);
f1214net/bridge/br.cf->timer = CURRENT_TIME;
f1215net/bridge/br.cf->flags = FDB_ENT_VALID;
f1221net/bridge/br.cif (br_avl_insert(f) == 0) { /* update */
f1222net/bridge/br.ckfree(f);
f1226net/bridge/br.cf->fdb_next = port_info[port].fdb;
f1227net/bridge/br.cport_info[port].fdb = f;
f1260net/bridge/br.cstruct fdb *f;
f1284net/bridge/br.cf = br_avl_find_addr(skb->h.eth->h_dest);
f1288net/bridge/br.cif (!f | !(f->flags & FDB_ENT_VALID)) {
f1296net/bridge/br.cif (port_info[f->port].state == Forwarding) {
f1298net/bridge/br.cif (f->timer + fdb_aging_time < CURRENT_TIME) {
f1300net/bridge/br.cf->flags &= ~FDB_ENT_VALID;
f1319net/bridge/br.cskb->dev=port_info[f->port].dev;
f91net/core/firewall.cstruct firewall_ops *f=fw->next;
f92net/core/firewall.c*nl = f;
f201net/ipv4/ip_fw.cstruct ip_fw *f;
f329net/ipv4/ip_fw.cfor (f=chain;f;f=f->fw_next) 
f350net/ipv4/ip_fw.cif ((src&f->fw_smsk.s_addr)==f->fw_src.s_addr
f351net/ipv4/ip_fw.c&&  (dst&f->fw_dmsk.s_addr)==f->fw_dst.s_addr)
f355net/ipv4/ip_fw.cif ((f->fw_flg & IP_FW_F_BIDIR) &&
f356net/ipv4/ip_fw.c(dst&f->fw_smsk.s_addr)==f->fw_src.s_addr
f357net/ipv4/ip_fw.c&&  (src&f->fw_dmsk.s_addr)==f->fw_dst.s_addr)
f366net/ipv4/ip_fw.cif(f->fw_via.s_addr && rif)
f368net/ipv4/ip_fw.cif(rif->pa_addr!=f->fw_via.s_addr)
f375net/ipv4/ip_fw.cif(f->fw_viadev)
f377net/ipv4/ip_fw.cif(rif!=f->fw_viadev)
f392net/ipv4/ip_fw.cf_prt=f->fw_flg&IP_FW_F_KIND;
f402net/ipv4/ip_fw.cif((f->fw_flg&IP_FW_F_TCPSYN) && notcpsyn)
f405net/ipv4/ip_fw.cif((f->fw_flg&IP_FW_F_TCPACK) && notcpack)
f417net/ipv4/ip_fw.c! port_match(&f->fw_pts[0], f->fw_nsp,
f418net/ipv4/ip_fw.cicmp_type,f->fw_flg&IP_FW_F_SRNG)) ||
f420net/ipv4/ip_fw.cport_match(&f->fw_pts[0], f->fw_nsp, src_port,
f421net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_SRNG) &&
f422net/ipv4/ip_fw.cport_match(&f->fw_pts[f->fw_nsp], f->fw_ndp, dst_port,
f423net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_DRNG)) || ((match & 0x02) &&
f424net/ipv4/ip_fw.cport_match(&f->fw_pts[0], f->fw_nsp, dst_port,
f425net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_SRNG) &&
f426net/ipv4/ip_fw.cport_match(&f->fw_pts[f->fw_nsp], f->fw_ndp, src_port,
f427net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_DRNG))))
f438net/ipv4/ip_fw.cif (f->fw_flg & IP_FW_F_PRN)
f441net/ipv4/ip_fw.cif(f->fw_flg&IP_FW_F_ACCEPT) {
f442net/ipv4/ip_fw.cif(f->fw_flg&IP_FW_F_MASQ)
f446net/ipv4/ip_fw.c} else if(f->fw_flg&IP_FW_F_ICMPRPL)
f479net/ipv4/ip_fw.cf->fw_bcnt+=ntohs(ip->tot_len);
f480net/ipv4/ip_fw.cf->fw_pcnt++;
f494net/ipv4/ip_fw.cif (f!=NULL) {
f495net/ipv4/ip_fw.cpolicy=f->fw_flg;
f496net/ipv4/ip_fw.ctosand=f->fw_tosand;
f497net/ipv4/ip_fw.ctosxor=f->fw_tosxor;
f774net/ipv4/ip_fw.cvoid ip_acct_cnt(struct iphdr *iph, struct device *dev, struct ip_fw *f)
f776net/ipv4/ip_fw.c(void) ip_fw_chk(iph, dev, f, 0, 1);
f192net/ipv4/route.cstatic void fib_free_node(struct fib_node * f)
f194net/ipv4/route.cstruct fib_info * fi = f->fib_info;
f207net/ipv4/route.ckfree_s(f, sizeof(struct fib_node));
f217net/ipv4/route.cstruct fib_node * f;
f222net/ipv4/route.cf = fz->fz_hash_table[fz_hash_code(dst, fz->fz_logmask)];
f224net/ipv4/route.cf = fz->fz_list;
f226net/ipv4/route.cfor ( ; f; f = f->fib_next)
f228net/ipv4/route.cif ((dst ^ f->fib_dst) & fz->fz_mask)
f230net/ipv4/route.cif (f->fib_info->fib_flags & RTF_GATEWAY)
f232net/ipv4/route.creturn f;
f255net/ipv4/route.cstruct fib_node * f;
f262net/ipv4/route.cf = fz->fz_hash_table[fz_hash_code(dst, fz->fz_logmask)];
f264net/ipv4/route.cf = fz->fz_list;
f266net/ipv4/route.cfor ( ; f; f = f->fib_next)
f268net/ipv4/route.cif ((dst ^ f->fib_dst) & fz->fz_mask)
f270net/ipv4/route.cif (!(f->fib_info->fib_flags & RTF_GATEWAY))
f271net/ipv4/route.creturn f;
f295net/ipv4/route.cstruct fib_node * f;
f300net/ipv4/route.cf = fz->fz_hash_table[fz_hash_code(dst, fz->fz_logmask)];
f302net/ipv4/route.cf = fz->fz_list;
f304net/ipv4/route.cfor ( ; f; f = f->fib_next)
f306net/ipv4/route.cif ((dst ^ f->fib_dst) & fz->fz_mask)
f308net/ipv4/route.creturn f;
f316net/ipv4/route.cstruct fib_node * f;
f317net/ipv4/route.cf = fib_lookup_gateway(gw);
f318net/ipv4/route.cif (f)
f319net/ipv4/route.creturn f->fib_info->fib_dev;
f377net/ipv4/route.cstruct fib_node *f;
f380net/ipv4/route.cwhile((f = *fp) != NULL) 
f382net/ipv4/route.cstruct fib_info * fi = f->fib_info;
f389net/ipv4/route.cif (f->fib_dst != dst ||
f391net/ipv4/route.c(metric >= 0 && f->fib_metric != metric) ||
f394net/ipv4/route.cfp = &f->fib_next;
f398net/ipv4/route.c*fp = f->fib_next;
f399net/ipv4/route.cif (fib_loopback == f)
f403net/ipv4/route.cfib_free_node(f);
f523net/ipv4/route.cstruct fib_node *f, *f1;
f578net/ipv4/route.cf = (struct fib_node *) kmalloc(sizeof(struct fib_node), GFP_KERNEL);
f579net/ipv4/route.cif (f == NULL)
f582net/ipv4/route.cmemset(f, 0, sizeof(struct fib_node));
f583net/ipv4/route.cf->fib_dst = dst;
f584net/ipv4/route.cf->fib_metric = metric;
f585net/ipv4/route.cf->fib_tos    = 0;
f589net/ipv4/route.ckfree_s(f, sizeof(struct fib_node));
f592net/ipv4/route.cf->fib_info = fi;
f604net/ipv4/route.cfib_free_node(f);
f698net/ipv4/route.cfib_free_node(f);
f707net/ipv4/route.cf->fib_next = f1;
f708net/ipv4/route.c*fp = f;
f710net/ipv4/route.cfib_loopback = f;
f722net/ipv4/route.cfp = &f->fib_next;
f747net/ipv4/route.cstruct fib_node *f;
f749net/ipv4/route.cwhile ((f = *fp) != NULL) {
f750net/ipv4/route.cif (f->fib_info->fib_dev != dev) {
f751net/ipv4/route.cfp = &f->fib_next;
f755net/ipv4/route.c*fp = f->fib_next;
f756net/ipv4/route.cif (fib_loopback == f)
f759net/ipv4/route.cfib_free_node(f);
f809net/ipv4/route.cstruct fib_node *f;
f856net/ipv4/route.cfor (f = *fp; f; f = f->fib_next) 
f870net/ipv4/route.cfi = f->fib_info;
f872net/ipv4/route.cfi->fib_dev->name, (unsigned long)f->fib_dst, (unsigned long)fi->fib_gateway,
f873net/ipv4/route.cfi->fib_flags, 0, f->fib_use, f->fib_metric,
f1477net/ipv4/route.cstruct fib_node * f;
f1493net/ipv4/route.cf = fib_lookup_local(daddr);
f1495net/ipv4/route.cf = fib_lookup (daddr);
f1497net/ipv4/route.cif (f)
f1499net/ipv4/route.cfi = f->fib_info;
f1500net/ipv4/route.cf->fib_use++;
f1503net/ipv4/route.cif (!f || (fi->fib_flags & RTF_REJECT))
f1527net/ipv4/route.cf->fib_use--;
f1528net/ipv4/route.cif ((f = fib_loopback) != NULL)
f1530net/ipv4/route.cf->fib_use++;
f1531net/ipv4/route.cfi = f->fib_info;
f1535net/ipv4/route.cif (!f)
f1554net/ipv4/route.crth->rt_tos  = f->fib_tos;
f1027net/ipx/af_ipx.cipx_interface_definition f;
f1035net/ipx/af_ipx.cf.ipx_network=sipx->sipx_network;
f1036net/ipx/af_ipx.cmemcpy(f.ipx_device, ifr.ifr_name, sizeof(f.ipx_device));
f1037net/ipx/af_ipx.cmemcpy(f.ipx_node, sipx->sipx_node, IPX_NODE_LEN);
f1038net/ipx/af_ipx.cf.ipx_dlink_type=sipx->sipx_type;
f1039net/ipx/af_ipx.cf.ipx_special=sipx->sipx_special;
f1041net/ipx/af_ipx.creturn ipxitf_delete(&f);
f1043net/ipx/af_ipx.creturn ipxitf_create(&f);
f1383net/ipx/af_ipx.cstruct ipx_route_definition f;
f1384net/ipx/af_ipx.cf.ipx_network=st->sipx_network;
f1385net/ipx/af_ipx.cf.ipx_router_network=sg->sipx_network;
f1386net/ipx/af_ipx.cmemcpy(f.ipx_router_node, sg->sipx_node, IPX_NODE_LEN);
f1387net/ipx/af_ipx.creturn ipxrtr_create(&f);
f195net/unix/garbage.cunix_socket *f=NULL,*sk;
f228net/unix/garbage.cif(f==NULL)
f229net/unix/garbage.cf=sk;
f241net/unix/garbage.cif (f) 
f243net/unix/garbage.cif (!(f->protinfo.af_unix.marksweep&MARKED))
f245net/unix/garbage.cf->protinfo.af_unix.marksweep|=MARKED;
f246net/unix/garbage.cx=f;
f247net/unix/garbage.cf=NULL;