taglinefilesource code
f115arch/i386/boot/compressed/inflate.cunsigned f;                   /* i repeats in table every f entries */
f224arch/i386/boot/compressed/inflate.cif ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
f227arch/i386/boot/compressed/inflate.cf -= a + 1;           /* deduct codes from patterns left */
f231arch/i386/boot/compressed/inflate.cif ((f <<= 1) <= *++xp)
f233arch/i386/boot/compressed/inflate.cf -= *xp;           /* else deduct codes from patterns */
f279arch/i386/boot/compressed/inflate.cf = 1 << (k - w);
f280arch/i386/boot/compressed/inflate.cfor (j = i >> w; j < z; j += f)
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);
f969drivers/block/ide-cd.cvoid lba_to_msf (int lba, byte *m, byte *s, byte *f)
f976drivers/block/ide-cd.c*f = lba % CD_FRAMES;
f981drivers/block/ide-cd.cint msf_to_lba (byte m, byte s, byte f)
f983drivers/block/ide-cd.creturn (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_BLOCK_OFFSET;
f522drivers/char/n_tty.cchar *f, flags = 0;
f543drivers/char/n_tty.cfor (i=count, p = cp, f = fp; i; i--, p++) {
f544drivers/char/n_tty.cif (f)
f545drivers/char/n_tty.cflags = *f++;
f161drivers/char/tty_io.cstruct file *f;
f164drivers/char/tty_io.cfor (f = first_file, i=0; i<nr_files; i++, f = f->f_next) {
f165drivers/char/tty_io.cif (!f->f_count)
f167drivers/char/tty_io.cif (f->private_data == tty) {
f743drivers/sound/opl3.cint             f, octave;
f752drivers/sound/opl3.cf = freq;
f756drivers/sound/opl3.cif (f == 0)
f758drivers/sound/opl3.celse if (f < 261)
f760drivers/sound/opl3.cwhile (f < 261)
f763drivers/sound/opl3.cf <<= 1;
f766drivers/sound/opl3.celse if (f > 493)
f768drivers/sound/opl3.cwhile (f > 493)
f771drivers/sound/opl3.cf >>= 1;
f75drivers/sound/os.h#define RESET_WAIT_QUEUE(q, f) {f.aborting = 0;f.mode = WK_NONE;}
f76drivers/sound/os.h#define PROCESS_ABORTING(q, f) (/*f.aborting | */(current->signal & ~current->blocked))
f77drivers/sound/os.h#define SET_ABORT_FLAG(q, f) f.aborting = 1
f78drivers/sound/os.h#define TIMED_OUT(q, f) (f.mode & WK_TIMEOUT)
f79drivers/sound/os.h#define DO_SLEEP(q, f, time_limit)  \
f83drivers/sound/os.hf.mode = WK_SLEEP;interruptible_sleep_on(&q); \
f84drivers/sound/os.hif (!(f.mode & WK_WAKEUP)) \
f87drivers/sound/os.hf.aborting = 1; \
f89drivers/sound/os.hif (jiffies >= tl) f.mode |= WK_TIMEOUT; \
f91drivers/sound/os.hf.mode &= ~WK_SLEEP; \
f93drivers/sound/os.h#define SOMEONE_WAITING(q, f) (f.mode & WK_SLEEP)
f94drivers/sound/os.h#define WAKE_UP(q, f)      {f.mode = WK_WAKEUP;wake_up(&q);}
f107fs/exec.cstruct file *f, **fpp;
f111fs/exec.cf = get_empty_filp();
f112fs/exec.cif (!f)
f120fs/exec.cf->f_count--;
f125fs/exec.c*fpp = f;
f126fs/exec.cf->f_flags = mode;
f127fs/exec.cf->f_mode = (mode+1) & O_ACCMODE;
f128fs/exec.cf->f_inode = inode;
f129fs/exec.cf->f_pos = 0;
f130fs/exec.cf->f_reada = 0;
f131fs/exec.cf->f_op = inode->i_op->default_file_ops;
f132fs/exec.cif (f->f_op->open) {
f133fs/exec.cerror = f->f_op->open(inode,f);
f136fs/exec.cf->f_count--;
f71fs/file_table.cstruct file * f;
f76fs/file_table.cfor (f = first_file, i=0; i < nr_files; i++, f = f->f_next)
f77fs/file_table.cif (!f->f_count) {
f78fs/file_table.cremove_file_free(f);
f79fs/file_table.cmemset(f,0,sizeof(*f));
f80fs/file_table.cput_last_free(f);
f81fs/file_table.cf->f_count = 1;
f82fs/file_table.cf->f_version = ++event;
f83fs/file_table.creturn f;
f411fs/open.cstruct file * f;
f420fs/open.cf = get_empty_filp();
f421fs/open.cif (!f)
f423fs/open.ccurrent->files->fd[fd] = f;
f424fs/open.cf->f_flags = flag = flags;
f425fs/open.cf->f_mode = (flag+1) & O_ACCMODE;
f426fs/open.cif (f->f_mode)
f431fs/open.cif (!error && (f->f_mode & 2)) {
f438fs/open.cf->f_count--;
f442fs/open.cf->f_inode = inode;
f443fs/open.cf->f_pos = 0;
f444fs/open.cf->f_reada = 0;
f445fs/open.cf->f_op = NULL;
f447fs/open.cf->f_op = inode->i_op->default_file_ops;
f448fs/open.cif (f->f_op && f->f_op->open) {
f449fs/open.cerror = f->f_op->open(inode,f);
f451fs/open.cif (f->f_mode & 2) put_write_access(inode);
f453fs/open.cf->f_count--;
f458fs/open.cf->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
f382fs/pipe.cstruct file * f[2];
f390fs/pipe.cif (!(f[j] = get_empty_filp()))
f393fs/pipe.cf[0]->f_count--;
f399fs/pipe.ccurrent->files->fd[ fd[j]=i ] = f[j];
f405fs/pipe.cf[0]->f_count--;
f406fs/pipe.cf[1]->f_count--;
f412fs/pipe.cf[0]->f_count--;
f413fs/pipe.cf[1]->f_count--;
f416fs/pipe.cf[0]->f_inode = f[1]->f_inode = inode;
f417fs/pipe.cf[0]->f_pos = f[1]->f_pos = 0;
f418fs/pipe.cf[0]->f_flags = O_RDONLY;
f419fs/pipe.cf[0]->f_op = &read_pipe_fops;
f420fs/pipe.cf[0]->f_mode = 1;    /* read */
f421fs/pipe.cf[1]->f_flags = O_WRONLY;
f422fs/pipe.cf[1]->f_op = &write_pipe_fops;
f423fs/pipe.cf[1]->f_mode = 2;    /* write */
f21fs/proc/link.cstatic int proc_fd_dupf(struct inode * inode, struct file * f);
f66fs/proc/link.cstatic int proc_fd_dupf(struct inode * inode, struct file * f)
f74fs/proc/link.cif (current->files->fd[fd] == f)
f91fs/proc/link.cif (new_f->f_mode && !f->f_mode && 3)
f96fs/proc/link.cif (!--f->f_count)
f97fs/proc/link.ciput(f->f_inode);
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))
f400include/asm-i386/string.h#define memcpy(t, f, n) \
f402include/asm-i386/string.h__constant_memcpy((t),(f),(n)) : \
f403include/asm-i386/string.h__memcpy((t),(f),(n)))
f57include/linux/ext2_fs.h#  define ext2_debug(f, a...)  { \
f60include/linux/ext2_fs.hprintk (f, ## a); \
f63include/linux/ext2_fs.h#  define ext2_debug(f, a...)  /**/
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);
f118include/linux/tty.h#define _I_FLAG(tty,f)  ((tty)->termios->c_iflag & (f))
f119include/linux/tty.h#define _O_FLAG(tty,f)  ((tty)->termios->c_oflag & (f))
f120include/linux/tty.h#define _C_FLAG(tty,f)  ((tty)->termios->c_cflag & (f))
f121include/linux/tty.h#define _L_FLAG(tty,f)  ((tty)->termios->c_lflag & (f))
f120kernel/fork.cstruct file * f;
f124kernel/fork.cif ((f = p->files->fd[i]) != NULL)
f125kernel/fork.cp->files->fd[i] = copy_fd(f);
f128kernel/fork.cif ((f = p->files->fd[i]) != NULL)
f129kernel/fork.cf->f_count++;
f114net/inet/ip_fw.cstruct ip_fw *f;
f156net/inet/ip_fw.cfor (f=chain;f;f=f->next) 
f158net/inet/ip_fw.cif ((src&f->src_mask.s_addr)==f->src.s_addr
f159net/inet/ip_fw.c&&  (dst&f->dst_mask.s_addr)==f->dst.s_addr) 
f161net/inet/ip_fw.cfrwl_proto=f->flags&IP_FW_F_KIND;
f170net/inet/ip_fw.cif (!(f->flags & IP_FW_F_ACCEPT))
f174net/inet/ip_fw.creturn( f->flags & IP_FW_F_ACCEPT );
f224net/inet/ip_fw.cif (proto==IP_FW_F_ICMP || (port_match(&f->ports[0],f->n_src_p,src_port,
f225net/inet/ip_fw.cf->flags&IP_FW_F_SRNG) &&
f226net/inet/ip_fw.cport_match(&f->ports[f->n_src_p],f->n_dst_p,dst_port,
f227net/inet/ip_fw.cf->flags&IP_FW_F_DRNG))) 
f230net/inet/ip_fw.cif (!(f->flags & IP_FW_F_ACCEPT))
f234net/inet/ip_fw.creturn( f->flags & IP_FW_F_ACCEPT);
f262net/inet/ip_fw.cif (f->flags&IP_FW_F_PRN) 
f310net/inet/ip_fw.cstruct ip_fw *f;
f320net/inet/ip_fw.cfor (f=chain;f;f=f->next) 
f322net/inet/ip_fw.cif ((src&f->src_mask.s_addr)==f->src.s_addr
f323net/inet/ip_fw.c&&  (dst&f->dst_mask.s_addr)==f->dst.s_addr) 
f328net/inet/ip_fw.cif  ((f->flags&IP_FW_F_BIDIR) &&
f329net/inet/ip_fw.c((src&f->src_mask.s_addr)==f->dst.s_addr
f330net/inet/ip_fw.c&&  (dst&f->dst_mask.s_addr)==f->src.s_addr)) 
f337net/inet/ip_fw.cfrwl_proto=f->flags&IP_FW_F_KIND;
f341net/inet/ip_fw.cf->p_cnt++;  /*  Rise packet count */
f348net/inet/ip_fw.cf->b_cnt+=ntohs(ip->tot_len);
f350net/inet/ip_fw.cf->b_cnt+=ip->tot_len;
f398net/inet/ip_fw.c(port_match(&f->ports[0],f->n_src_p,src_port,
f399net/inet/ip_fw.cf->flags&IP_FW_F_SRNG) &&
f400net/inet/ip_fw.cport_match(&f->ports[f->n_src_p],f->n_dst_p,dst_port,
f401net/inet/ip_fw.cf->flags&IP_FW_F_DRNG)))
f403net/inet/ip_fw.c&& (port_match(&f->ports[0],f->n_src_p,dst_port,
f404net/inet/ip_fw.cf->flags&IP_FW_F_SRNG)
f405net/inet/ip_fw.c&& port_match(&f->ports[f->n_src_p],f->n_dst_p,src_port,
f406net/inet/ip_fw.cf->flags&IP_FW_F_DRNG))))
f408net/inet/ip_fw.cf->p_cnt++;                   /* Rise packet count */
f413net/inet/ip_fw.cf->b_cnt+=ntohs(ip->tot_len);
f415net/inet/ip_fw.cf->b_cnt+=ip->tot_len;
f804net/inet/ipx.cipx_interface_definition f;
f812net/inet/ipx.cf.ipx_network=sipx->sipx_network;
f813net/inet/ipx.cmemcpy(f.ipx_device, ifr.ifr_name, sizeof(f.ipx_device));
f814net/inet/ipx.cf.ipx_dlink_type=sipx->sipx_type;
f815net/inet/ipx.cf.ipx_primary=sipx->sipx_primary;
f816net/inet/ipx.cf.ipx_internal=sipx->sipx_internal;
f818net/inet/ipx.creturn ipxitf_delete(&f);
f820net/inet/ipx.creturn ipxitf_create(&f);
f1060net/inet/ipx.cstruct ipx_route_definition f;
f1061net/inet/ipx.cf.ipx_network=st->sipx_network;
f1062net/inet/ipx.cf.ipx_router_network=sg->sipx_network;
f1063net/inet/ipx.cmemcpy(f.ipx_router_node, sg->sipx_node, IPX_NODE_LEN);
f1064net/inet/ipx.creturn ipxrtr_create(&f);