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 (EXTENDED *a, unsigned long *b, int f)
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_s_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(&op_b, b, f);
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(&op_c, c, f);  
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(&op_c, c, f);
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(&op_c, c, f);
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(&op_c, c, f);
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);
f3188drivers/block/floppy.cstruct format_descr f;
f3263drivers/block/floppy.creturn do_format(device, &inparam.f);
f1533drivers/block/ide-cd.cvoid lba_to_msf (int lba, byte *m, byte *s, byte *f)
f1540drivers/block/ide-cd.c*f = lba % CD_FRAMES;
f1545drivers/block/ide-cd.cint msf_to_lba (byte m, byte s, byte f)
f1547drivers/block/ide-cd.creturn (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_BLOCK_OFFSET;
f1796drivers/block/ide-cd.ctoc->ent[i].addr.msf.f = bcd2bin (toc->ent[i].addr.msf.f);
f1800drivers/block/ide-cd.ctoc->ent[i].addr.msf.f);
f1816drivers/block/ide-cd.cms_tmp.ent.addr.msf.f);
f190drivers/block/ide.hbyte f;
f403drivers/cdrom/cm206.cinline int f_s_m2lba(uch f, uch s, uch m)
f405drivers/cdrom/cm206.creturn f + 75*(s-2 + 60*m);
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 )
f174drivers/char/tty_io.cstruct file *f;
f177drivers/char/tty_io.cfor (f = first_file, i=0; i<nr_files; i++, f = f->f_next) {
f178drivers/char/tty_io.cif (!f->f_count)
f180drivers/char/tty_io.cif (f->private_data == tty) {
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)
f359drivers/net/plip.cplip_func f;
f363drivers/net/plip.cf = connection_state_table[nl->connection];
f364drivers/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)
f2561drivers/scsi/advansys.cSTATIC void   asc_prt_hex(char *f, uchar *, int);
f4895drivers/scsi/advansys.casc_prt_hex(char *f, uchar *s, int l)
f4902drivers/scsi/advansys.cprintk("%s: (%d bytes)\n", f, l);
f726drivers/sound/opl3.cint             f, octave;
f735drivers/sound/opl3.cf = freq;
f739drivers/sound/opl3.cif (f == 0)
f741drivers/sound/opl3.celse if (f < 261)
f743drivers/sound/opl3.cwhile (f < 261)
f746drivers/sound/opl3.cf <<= 1;
f749drivers/sound/opl3.celse if (f > 493)
f751drivers/sound/opl3.cwhile (f > 493)
f754drivers/sound/opl3.cf >>= 1;
f112fs/exec.cstruct file *f, **fpp;
f116fs/exec.cf = get_empty_filp();
f117fs/exec.cif (!f)
f125fs/exec.cf->f_count--;
f130fs/exec.c*fpp = f;
f131fs/exec.cf->f_flags = mode;
f132fs/exec.cf->f_mode = (mode+1) & O_ACCMODE;
f133fs/exec.cf->f_inode = inode;
f134fs/exec.cf->f_pos = 0;
f135fs/exec.cf->f_reada = 0;
f136fs/exec.cf->f_op = inode->i_op->default_file_ops;
f137fs/exec.cif (f->f_op->open) {
f138fs/exec.cerror = f->f_op->open(inode,f);
f141fs/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;
f471fs/open.cstruct file * f;
f474fs/open.cf = get_empty_filp();
f475fs/open.cif (!f)
f477fs/open.cf->f_flags = flag = flags;
f478fs/open.cf->f_mode = (flag+1) & O_ACCMODE;
f479fs/open.cif (f->f_mode)
f486fs/open.cif (f->f_mode & FMODE_WRITE) {
f492fs/open.cf->f_inode = inode;
f493fs/open.cf->f_pos = 0;
f494fs/open.cf->f_reada = 0;
f495fs/open.cf->f_op = NULL;
f497fs/open.cf->f_op = inode->i_op->default_file_ops;
f498fs/open.cif (f->f_op && f->f_op->open) {
f499fs/open.cerror = f->f_op->open(inode,f);
f503fs/open.cf->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
f512fs/open.ccurrent->files->fd[fd] = f;
f518fs/open.cif (f->f_op && f->f_op->release)
f519fs/open.cf->f_op->release(inode,f);
f521fs/open.cif (f->f_mode & FMODE_WRITE)
f526fs/open.cf->f_count--;
f399fs/pipe.cstruct file *f[2];
f407fs/pipe.cif (!(f[j] = get_empty_filp()))
f412fs/pipe.cf[0]->f_count--;
f418fs/pipe.ccurrent->files->fd[ fd[j]=i ] = f[j];
f423fs/pipe.cf[0]->f_count--;
f424fs/pipe.cf[1]->f_count--;
f429fs/pipe.cf[0]->f_inode = f[1]->f_inode = inode;
f430fs/pipe.cf[0]->f_pos = f[1]->f_pos = 0;
f431fs/pipe.cf[0]->f_flags = O_RDONLY;
f432fs/pipe.cf[0]->f_op = &read_pipe_fops;
f433fs/pipe.cf[0]->f_mode = 1;    /* read */
f434fs/pipe.cf[1]->f_flags = O_WRONLY;
f435fs/pipe.cf[1]->f_op = &write_pipe_fops;
f436fs/pipe.cf[1]->f_mode = 2;    /* write */
f163fs/stat.cstruct file * f;
f170fs/stat.cif (fd >= NR_OPEN || !(f=current->files->fd[fd]) || !(inode=f->f_inode))
f178fs/stat.cstruct file * f;
f185fs/stat.cif (fd >= NR_OPEN || !(f=current->files->fd[fd]) || !(inode=f->f_inode))
f411include/asm-i386/string.h#define memcpy(t, f, n) \
f413include/asm-i386/string.h__constant_memcpy((t),(f),(n)) : \
f414include/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))
f143include/linux/tqueue.hvoid (*f) (void *);
f152include/linux/tqueue.hf      = p -> routine;
f155include/linux/tqueue.h(*f)(arg);
f123include/linux/tty.h#define _I_FLAG(tty,f)  ((tty)->termios->c_iflag & (f))
f124include/linux/tty.h#define _O_FLAG(tty,f)  ((tty)->termios->c_oflag & (f))
f125include/linux/tty.h#define _C_FLAG(tty,f)  ((tty)->termios->c_cflag & (f))
f126include/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
f24include/net/netlink.h#define ip_netlink_msg(a,b,c,d,e,f,g)
f172kernel/fork.cstruct file * f = current->files->fd[i];
f173kernel/fork.cif (f)
f174kernel/fork.cf->f_count++;
f175kernel/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)
f85net/core/firewall.cstruct firewall_ops *f=fw->next;
f86net/core/firewall.cxchg(nl,f);
f203net/ipv4/ip_fw.cstruct ip_fw *f;
f331net/ipv4/ip_fw.cfor (f=chain;f;f=f->fw_next) 
f352net/ipv4/ip_fw.cif ((src&f->fw_smsk.s_addr)==f->fw_src.s_addr
f353net/ipv4/ip_fw.c&&  (dst&f->fw_dmsk.s_addr)==f->fw_dst.s_addr)
f357net/ipv4/ip_fw.cif ((f->fw_flg & IP_FW_F_BIDIR) &&
f358net/ipv4/ip_fw.c(dst&f->fw_smsk.s_addr)==f->fw_src.s_addr
f359net/ipv4/ip_fw.c&&  (src&f->fw_dmsk.s_addr)==f->fw_dst.s_addr)
f368net/ipv4/ip_fw.cif(f->fw_via.s_addr && rif)
f370net/ipv4/ip_fw.cif(rif->pa_addr!=f->fw_via.s_addr)
f384net/ipv4/ip_fw.cf_prt=f->fw_flg&IP_FW_F_KIND;
f394net/ipv4/ip_fw.cif((f->fw_flg&IP_FW_F_TCPSYN) && notcpsyn)
f397net/ipv4/ip_fw.cif((f->fw_flg&IP_FW_F_TCPACK) && notcpack)
f409net/ipv4/ip_fw.c! port_match(&f->fw_pts[0], f->fw_nsp,
f410net/ipv4/ip_fw.cicmp_type,f->fw_flg&IP_FW_F_SRNG)) ||
f412net/ipv4/ip_fw.cport_match(&f->fw_pts[0], f->fw_nsp, src_port,
f413net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_SRNG) &&
f414net/ipv4/ip_fw.cport_match(&f->fw_pts[f->fw_nsp], f->fw_ndp, dst_port,
f415net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_DRNG)) || ((match & 0x02) &&
f416net/ipv4/ip_fw.cport_match(&f->fw_pts[0], f->fw_nsp, dst_port,
f417net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_SRNG) &&
f418net/ipv4/ip_fw.cport_match(&f->fw_pts[f->fw_nsp], f->fw_ndp, src_port,
f419net/ipv4/ip_fw.cf->fw_flg&IP_FW_F_DRNG))))
f430net/ipv4/ip_fw.cif (f->fw_flg & IP_FW_F_PRN)
f433net/ipv4/ip_fw.cif(f->fw_flg&IP_FW_F_ACCEPT) {
f434net/ipv4/ip_fw.cif(f->fw_flg&IP_FW_F_MASQ)
f438net/ipv4/ip_fw.c} else if(f->fw_flg&IP_FW_F_ICMPRPL)
f468net/ipv4/ip_fw.cf->fw_bcnt+=ntohs(ip->tot_len);
f469net/ipv4/ip_fw.cf->fw_pcnt++;
f483net/ipv4/ip_fw.cif(f!=NULL) 
f485net/ipv4/ip_fw.cpolicy=f->fw_flg;
f486net/ipv4/ip_fw.ctosand=f->fw_tosand;
f487net/ipv4/ip_fw.ctosxor=f->fw_tosxor;
f1251net/ipv4/ip_fw.cvoid ip_acct_cnt(struct iphdr *iph, struct device *dev, struct ip_fw *f)
f1253net/ipv4/ip_fw.c(void) ip_fw_chk(iph, dev, f, 0, 1);
f189net/ipv4/route.cstatic void fib_free_node(struct fib_node * f)
f191net/ipv4/route.cstruct fib_info * fi = f->fib_info;
f204net/ipv4/route.ckfree_s(f, sizeof(struct fib_node));
f214net/ipv4/route.cstruct fib_node * f;
f219net/ipv4/route.cf = fz->fz_hash_table[fz_hash_code(dst, fz->fz_logmask)];
f221net/ipv4/route.cf = fz->fz_list;
f223net/ipv4/route.cfor ( ; f; f = f->fib_next)
f225net/ipv4/route.cif ((dst ^ f->fib_dst) & fz->fz_mask)
f227net/ipv4/route.cif (f->fib_info->fib_flags & RTF_GATEWAY)
f229net/ipv4/route.creturn f;
f252net/ipv4/route.cstruct fib_node * f;
f259net/ipv4/route.cf = fz->fz_hash_table[fz_hash_code(dst, fz->fz_logmask)];
f261net/ipv4/route.cf = fz->fz_list;
f263net/ipv4/route.cfor ( ; f; f = f->fib_next)
f265net/ipv4/route.cif ((dst ^ f->fib_dst) & fz->fz_mask)
f267net/ipv4/route.cif (!(f->fib_info->fib_flags & RTF_GATEWAY))
f268net/ipv4/route.creturn f;
f292net/ipv4/route.cstruct fib_node * f;
f297net/ipv4/route.cf = fz->fz_hash_table[fz_hash_code(dst, fz->fz_logmask)];
f299net/ipv4/route.cf = fz->fz_list;
f301net/ipv4/route.cfor ( ; f; f = f->fib_next)
f303net/ipv4/route.cif ((dst ^ f->fib_dst) & fz->fz_mask)
f305net/ipv4/route.creturn f;
f313net/ipv4/route.cstruct fib_node * f;
f314net/ipv4/route.cf = fib_lookup_gateway(gw);
f315net/ipv4/route.cif (f)
f316net/ipv4/route.creturn f->fib_info->fib_dev;
f374net/ipv4/route.cstruct fib_node *f;
f377net/ipv4/route.cwhile((f = *fp) != NULL) 
f379net/ipv4/route.cstruct fib_info * fi = f->fib_info;
f386net/ipv4/route.cif (f->fib_dst != dst ||
f388net/ipv4/route.c(metric >= 0 && f->fib_metric != metric) ||
f391net/ipv4/route.cfp = &f->fib_next;
f395net/ipv4/route.c*fp = f->fib_next;
f396net/ipv4/route.cif (fib_loopback == f)
f400net/ipv4/route.cfib_free_node(f);
f520net/ipv4/route.cstruct fib_node *f, *f1;
f574net/ipv4/route.cf = (struct fib_node *) kmalloc(sizeof(struct fib_node), GFP_KERNEL);
f575net/ipv4/route.cif (f == NULL)
f578net/ipv4/route.cmemset(f, 0, sizeof(struct fib_node));
f579net/ipv4/route.cf->fib_dst = dst;
f580net/ipv4/route.cf->fib_metric = metric;
f581net/ipv4/route.cf->fib_tos    = 0;
f585net/ipv4/route.ckfree_s(f, sizeof(struct fib_node));
f588net/ipv4/route.cf->fib_info = fi;
f600net/ipv4/route.cfib_free_node(f);
f694net/ipv4/route.cfib_free_node(f);
f703net/ipv4/route.cf->fib_next = f1;
f704net/ipv4/route.c*fp = f;
f706net/ipv4/route.cfib_loopback = f;
f718net/ipv4/route.cfp = &f->fib_next;
f743net/ipv4/route.cstruct fib_node *f;
f745net/ipv4/route.cwhile ((f = *fp) != NULL) {
f746net/ipv4/route.cif (f->fib_info->fib_dev != dev) {
f747net/ipv4/route.cfp = &f->fib_next;
f751net/ipv4/route.c*fp = f->fib_next;
f752net/ipv4/route.cif (fib_loopback == f)
f755net/ipv4/route.cfib_free_node(f);
f805net/ipv4/route.cstruct fib_node *f;
f852net/ipv4/route.cfor (f = *fp; f; f = f->fib_next) 
f866net/ipv4/route.cfi = f->fib_info;
f868net/ipv4/route.cfi->fib_dev->name, (unsigned long)f->fib_dst, (unsigned long)fi->fib_gateway,
f869net/ipv4/route.cfi->fib_flags, 0, f->fib_use, f->fib_metric,
f1473net/ipv4/route.cstruct fib_node * f;
f1489net/ipv4/route.cf = fib_lookup_local(daddr);
f1491net/ipv4/route.cf = fib_lookup (daddr);
f1493net/ipv4/route.cif (f)
f1495net/ipv4/route.cfi = f->fib_info;
f1496net/ipv4/route.cf->fib_use++;
f1499net/ipv4/route.cif (!f || (fi->fib_flags & RTF_REJECT))
f1523net/ipv4/route.cf->fib_use--;
f1524net/ipv4/route.cif ((f = fib_loopback) != NULL)
f1526net/ipv4/route.cf->fib_use++;
f1527net/ipv4/route.cfi = f->fib_info;
f1531net/ipv4/route.cif (!f)
f1550net/ipv4/route.crth->rt_tos  = f->fib_tos;
f1000net/ipx/af_ipx.cipx_interface_definition f;
f1008net/ipx/af_ipx.cf.ipx_network=sipx->sipx_network;
f1009net/ipx/af_ipx.cmemcpy(f.ipx_device, ifr.ifr_name, sizeof(f.ipx_device));
f1010net/ipx/af_ipx.cmemcpy(f.ipx_node, sipx->sipx_node, IPX_NODE_LEN);
f1011net/ipx/af_ipx.cf.ipx_dlink_type=sipx->sipx_type;
f1012net/ipx/af_ipx.cf.ipx_special=sipx->sipx_special;
f1014net/ipx/af_ipx.creturn ipxitf_delete(&f);
f1016net/ipx/af_ipx.creturn ipxitf_create(&f);
f1288net/ipx/af_ipx.cstruct ipx_route_definition f;
f1289net/ipx/af_ipx.cf.ipx_network=st->sipx_network;
f1290net/ipx/af_ipx.cf.ipx_router_network=sg->sipx_network;
f1291net/ipx/af_ipx.cmemcpy(f.ipx_router_node, sg->sipx_node, IPX_NODE_LEN);
f1292net/ipx/af_ipx.creturn ipxrtr_create(&f);