tag | line | file | source code |
f | 115 | arch/i386/boot/compressed/inflate.c | unsigned f; /* i repeats in table every f entries */ |
f | 224 | arch/i386/boot/compressed/inflate.c | if ((f = 1 << (j = k - w)) > a + 1) /* try a k-w bit table */ |
f | 227 | arch/i386/boot/compressed/inflate.c | f -= a + 1; /* deduct codes from patterns left */ |
f | 231 | arch/i386/boot/compressed/inflate.c | if ((f <<= 1) <= *++xp) |
f | 233 | arch/i386/boot/compressed/inflate.c | f -= *xp; /* else deduct codes from patterns */ |
f | 279 | arch/i386/boot/compressed/inflate.c | f = 1 << (k - w); |
f | 280 | arch/i386/boot/compressed/inflate.c | for (j = i >> w; j < z; j += f) |
f | 178 | arch/i386/math-emu/reg_compare.c | int f, c; |
f | 185 | arch/i386/math-emu/reg_compare.c | f = SW_C3 | SW_C2 | SW_C0; |
f | 191 | arch/i386/math-emu/reg_compare.c | f = SW_C0; |
f | 194 | arch/i386/math-emu/reg_compare.c | f = SW_C3; |
f | 197 | arch/i386/math-emu/reg_compare.c | f = 0; |
f | 200 | arch/i386/math-emu/reg_compare.c | f = SW_C3 | SW_C2 | SW_C0; |
f | 205 | arch/i386/math-emu/reg_compare.c | f = SW_C3 | SW_C2 | SW_C0; |
f | 209 | arch/i386/math-emu/reg_compare.c | setcc(f); |
f | 220 | arch/i386/math-emu/reg_compare.c | int f, c; |
f | 241 | arch/i386/math-emu/reg_compare.c | f = SW_C0; |
f | 244 | arch/i386/math-emu/reg_compare.c | f = SW_C3; |
f | 247 | arch/i386/math-emu/reg_compare.c | f = 0; |
f | 250 | arch/i386/math-emu/reg_compare.c | f = SW_C3 | SW_C2 | SW_C0; |
f | 255 | arch/i386/math-emu/reg_compare.c | f = SW_C3 | SW_C2 | SW_C0; |
f | 259 | arch/i386/math-emu/reg_compare.c | setcc(f); |
f | 270 | arch/i386/math-emu/reg_compare.c | int f, c; |
f | 296 | arch/i386/math-emu/reg_compare.c | f = SW_C0; |
f | 299 | arch/i386/math-emu/reg_compare.c | f = SW_C3; |
f | 302 | arch/i386/math-emu/reg_compare.c | f = 0; |
f | 305 | arch/i386/math-emu/reg_compare.c | f = SW_C3 | SW_C2 | SW_C0; |
f | 310 | arch/i386/math-emu/reg_compare.c | f = SW_C3 | SW_C2 | SW_C0; |
f | 314 | arch/i386/math-emu/reg_compare.c | setcc(f); |
f | 676 | drivers/block/ide-cd.c | void lba_to_msf (int lba, byte *m, byte *s, byte *f) |
f | 683 | drivers/block/ide-cd.c | *f = lba % CD_FRAMES; |
f | 688 | drivers/block/ide-cd.c | int msf_to_lba (byte m, byte s, byte f) |
f | 690 | drivers/block/ide-cd.c | return (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_BLOCK_OFFSET; |
f | 522 | drivers/char/n_tty.c | char *f, flags = 0; |
f | 543 | drivers/char/n_tty.c | for (i=count, p = cp, f = fp; i; i--, p++) { |
f | 544 | drivers/char/n_tty.c | if (f) |
f | 545 | drivers/char/n_tty.c | flags = *f++; |
f | 161 | drivers/char/tty_io.c | struct file *f; |
f | 164 | drivers/char/tty_io.c | for (f = first_file, i=0; i<nr_files; i++, f = f->f_next) { |
f | 165 | drivers/char/tty_io.c | if (!f->f_count) |
f | 167 | drivers/char/tty_io.c | if (f->private_data == tty) { |
f | 743 | drivers/sound/opl3.c | int f, octave; |
f | 752 | drivers/sound/opl3.c | f = freq; |
f | 756 | drivers/sound/opl3.c | if (f == 0) |
f | 758 | drivers/sound/opl3.c | else if (f < 261) |
f | 760 | drivers/sound/opl3.c | while (f < 261) |
f | 763 | drivers/sound/opl3.c | f <<= 1; |
f | 766 | drivers/sound/opl3.c | else if (f > 493) |
f | 768 | drivers/sound/opl3.c | while (f > 493) |
f | 771 | drivers/sound/opl3.c | f >>= 1; |
f | 75 | drivers/sound/os.h | #define RESET_WAIT_QUEUE(q, f) {f.aborting = 0;f.mode = WK_NONE;} |
f | 76 | drivers/sound/os.h | #define PROCESS_ABORTING(q, f) (/*f.aborting | */(current->signal & ~current->blocked)) |
f | 77 | drivers/sound/os.h | #define SET_ABORT_FLAG(q, f) f.aborting = 1 |
f | 78 | drivers/sound/os.h | #define TIMED_OUT(q, f) (f.mode & WK_TIMEOUT) |
f | 79 | drivers/sound/os.h | #define DO_SLEEP(q, f, time_limit) \ |
f | 83 | drivers/sound/os.h | f.mode = WK_SLEEP;interruptible_sleep_on(&q); \ |
f | 84 | drivers/sound/os.h | if (!(f.mode & WK_WAKEUP)) \ |
f | 87 | drivers/sound/os.h | f.aborting = 1; \ |
f | 89 | drivers/sound/os.h | if (jiffies >= tl) f.mode |= WK_TIMEOUT; \ |
f | 91 | drivers/sound/os.h | f.mode &= ~WK_SLEEP; \ |
f | 93 | drivers/sound/os.h | #define SOMEONE_WAITING(q, f) (f.mode & WK_SLEEP) |
f | 94 | drivers/sound/os.h | #define WAKE_UP(q, f) {f.mode = WK_WAKEUP;wake_up(&q);} |
f | 107 | fs/exec.c | struct file *f, **fpp; |
f | 111 | fs/exec.c | f = get_empty_filp(); |
f | 112 | fs/exec.c | if (!f) |
f | 123 | fs/exec.c | *fpp = f; |
f | 124 | fs/exec.c | f->f_flags = mode; |
f | 125 | fs/exec.c | f->f_mode = (mode+1) & O_ACCMODE; |
f | 126 | fs/exec.c | f->f_inode = inode; |
f | 127 | fs/exec.c | f->f_pos = 0; |
f | 128 | fs/exec.c | f->f_reada = 0; |
f | 129 | fs/exec.c | f->f_op = inode->i_op->default_file_ops; |
f | 130 | fs/exec.c | if (f->f_op->open) { |
f | 131 | fs/exec.c | error = f->f_op->open(inode,f); |
f | 134 | fs/exec.c | f->f_count--; |
f | 71 | fs/file_table.c | struct file * f; |
f | 76 | fs/file_table.c | for (f = first_file, i=0; i < nr_files; i++, f = f->f_next) |
f | 77 | fs/file_table.c | if (!f->f_count) { |
f | 78 | fs/file_table.c | remove_file_free(f); |
f | 79 | fs/file_table.c | memset(f,0,sizeof(*f)); |
f | 80 | fs/file_table.c | put_last_free(f); |
f | 81 | fs/file_table.c | f->f_count = 1; |
f | 82 | fs/file_table.c | f->f_version = ++event; |
f | 83 | fs/file_table.c | return f; |
f | 406 | fs/open.c | struct file * f; |
f | 415 | fs/open.c | f = get_empty_filp(); |
f | 416 | fs/open.c | if (!f) |
f | 418 | fs/open.c | current->files->fd[fd] = f; |
f | 419 | fs/open.c | f->f_flags = flag = flags; |
f | 420 | fs/open.c | f->f_mode = (flag+1) & O_ACCMODE; |
f | 421 | fs/open.c | if (f->f_mode) |
f | 426 | fs/open.c | if (!error && (f->f_mode & 2)) { |
f | 433 | fs/open.c | f->f_count--; |
f | 437 | fs/open.c | f->f_inode = inode; |
f | 438 | fs/open.c | f->f_pos = 0; |
f | 439 | fs/open.c | f->f_reada = 0; |
f | 440 | fs/open.c | f->f_op = NULL; |
f | 442 | fs/open.c | f->f_op = inode->i_op->default_file_ops; |
f | 443 | fs/open.c | if (f->f_op && f->f_op->open) { |
f | 444 | fs/open.c | error = f->f_op->open(inode,f); |
f | 446 | fs/open.c | if (f->f_mode & 2) put_write_access(inode); |
f | 448 | fs/open.c | f->f_count--; |
f | 453 | fs/open.c | f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC); |
f | 381 | fs/pipe.c | struct file * f[2]; |
f | 389 | fs/pipe.c | if (!(f[j] = get_empty_filp())) |
f | 392 | fs/pipe.c | f[0]->f_count--; |
f | 398 | fs/pipe.c | current->files->fd[ fd[j]=i ] = f[j]; |
f | 404 | fs/pipe.c | f[0]->f_count--; |
f | 405 | fs/pipe.c | f[1]->f_count--; |
f | 411 | fs/pipe.c | f[0]->f_count--; |
f | 412 | fs/pipe.c | f[1]->f_count--; |
f | 415 | fs/pipe.c | f[0]->f_inode = f[1]->f_inode = inode; |
f | 416 | fs/pipe.c | f[0]->f_pos = f[1]->f_pos = 0; |
f | 417 | fs/pipe.c | f[0]->f_flags = O_RDONLY; |
f | 418 | fs/pipe.c | f[0]->f_op = &read_pipe_fops; |
f | 419 | fs/pipe.c | f[0]->f_mode = 1; /* read */ |
f | 420 | fs/pipe.c | f[1]->f_flags = O_WRONLY; |
f | 421 | fs/pipe.c | f[1]->f_op = &write_pipe_fops; |
f | 422 | fs/pipe.c | f[1]->f_mode = 2; /* write */ |
f | 20 | fs/proc/link.c | static int proc_fd_dupf(struct inode * inode, struct file * f); |
f | 65 | fs/proc/link.c | static int proc_fd_dupf(struct inode * inode, struct file * f) |
f | 73 | fs/proc/link.c | if (current->files->fd[fd] == f) |
f | 90 | fs/proc/link.c | if (new_f->f_mode && !f->f_mode && 3) |
f | 95 | fs/proc/link.c | if (!--f->f_count) |
f | 96 | fs/proc/link.c | iput(f->f_inode); |
f | 161 | fs/stat.c | struct file * f; |
f | 168 | fs/stat.c | if (fd >= NR_OPEN || !(f=current->files->fd[fd]) || !(inode=f->f_inode)) |
f | 176 | fs/stat.c | struct file * f; |
f | 183 | fs/stat.c | if (fd >= NR_OPEN || !(f=current->files->fd[fd]) || !(inode=f->f_inode)) |
f | 400 | include/asm-i386/string.h | #define memcpy(t, f, n) \ |
f | 402 | include/asm-i386/string.h | __constant_memcpy((t),(f),(n)) : \ |
f | 403 | include/asm-i386/string.h | __memcpy((t),(f),(n))) |
f | 57 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) { \ |
f | 60 | include/linux/ext2_fs.h | printk (f, ## a); \ |
f | 63 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) /**/ |
f | 510 | include/linux/tpqic02.h | #define TPQDBG(f) ((QIC02_TAPE_DEBUG) & (TPQD_##f)) |
f | 143 | include/linux/tqueue.h | void (*f) (void *); |
f | 152 | include/linux/tqueue.h | f = p -> routine; |
f | 155 | include/linux/tqueue.h | (*f)(arg); |
f | 118 | include/linux/tty.h | #define _I_FLAG(tty,f) ((tty)->termios->c_iflag & (f)) |
f | 119 | include/linux/tty.h | #define _O_FLAG(tty,f) ((tty)->termios->c_oflag & (f)) |
f | 120 | include/linux/tty.h | #define _C_FLAG(tty,f) ((tty)->termios->c_cflag & (f)) |
f | 121 | include/linux/tty.h | #define _L_FLAG(tty,f) ((tty)->termios->c_lflag & (f)) |
f | 122 | kernel/fork.c | struct file * f; |
f | 126 | kernel/fork.c | if ((f = p->files->fd[i]) != NULL) |
f | 127 | kernel/fork.c | p->files->fd[i] = copy_fd(f); |
f | 130 | kernel/fork.c | if ((f = p->files->fd[i]) != NULL) |
f | 131 | kernel/fork.c | f->f_count++; |
f | 114 | net/inet/ip_fw.c | struct ip_fw *f; |
f | 156 | net/inet/ip_fw.c | for (f=chain;f;f=f->next) |
f | 158 | net/inet/ip_fw.c | if ((src&f->src_mask.s_addr)==f->src.s_addr |
f | 159 | net/inet/ip_fw.c | && (dst&f->dst_mask.s_addr)==f->dst.s_addr) |
f | 161 | net/inet/ip_fw.c | frwl_proto=f->flags&IP_FW_F_KIND; |
f | 170 | net/inet/ip_fw.c | if (!(f->flags & IP_FW_F_ACCEPT)) |
f | 174 | net/inet/ip_fw.c | return( f->flags & IP_FW_F_ACCEPT ); |
f | 224 | net/inet/ip_fw.c | if (proto==IP_FW_F_ICMP || (port_match(&f->ports[0],f->n_src_p,src_port, |
f | 225 | net/inet/ip_fw.c | f->flags&IP_FW_F_SRNG) && |
f | 226 | net/inet/ip_fw.c | port_match(&f->ports[f->n_src_p],f->n_dst_p,dst_port, |
f | 227 | net/inet/ip_fw.c | f->flags&IP_FW_F_DRNG))) |
f | 230 | net/inet/ip_fw.c | if (!(f->flags & IP_FW_F_ACCEPT)) |
f | 234 | net/inet/ip_fw.c | return( f->flags & IP_FW_F_ACCEPT); |
f | 262 | net/inet/ip_fw.c | if (f->flags&IP_FW_F_PRN) |
f | 310 | net/inet/ip_fw.c | struct ip_fw *f; |
f | 320 | net/inet/ip_fw.c | for (f=chain;f;f=f->next) |
f | 322 | net/inet/ip_fw.c | if ((src&f->src_mask.s_addr)==f->src.s_addr |
f | 323 | net/inet/ip_fw.c | && (dst&f->dst_mask.s_addr)==f->dst.s_addr) |
f | 328 | net/inet/ip_fw.c | if ((f->flags&IP_FW_F_BIDIR) && |
f | 329 | net/inet/ip_fw.c | ((src&f->src_mask.s_addr)==f->dst.s_addr |
f | 330 | net/inet/ip_fw.c | && (dst&f->dst_mask.s_addr)==f->src.s_addr)) |
f | 337 | net/inet/ip_fw.c | frwl_proto=f->flags&IP_FW_F_KIND; |
f | 341 | net/inet/ip_fw.c | f->p_cnt++; /* Rise packet count */ |
f | 348 | net/inet/ip_fw.c | f->b_cnt+=ntohs(ip->tot_len); |
f | 350 | net/inet/ip_fw.c | f->b_cnt+=ip->tot_len; |
f | 398 | net/inet/ip_fw.c | (port_match(&f->ports[0],f->n_src_p,src_port, |
f | 399 | net/inet/ip_fw.c | f->flags&IP_FW_F_SRNG) && |
f | 400 | net/inet/ip_fw.c | port_match(&f->ports[f->n_src_p],f->n_dst_p,dst_port, |
f | 401 | net/inet/ip_fw.c | f->flags&IP_FW_F_DRNG))) |
f | 403 | net/inet/ip_fw.c | && (port_match(&f->ports[0],f->n_src_p,dst_port, |
f | 404 | net/inet/ip_fw.c | f->flags&IP_FW_F_SRNG) |
f | 405 | net/inet/ip_fw.c | && port_match(&f->ports[f->n_src_p],f->n_dst_p,src_port, |
f | 406 | net/inet/ip_fw.c | f->flags&IP_FW_F_DRNG)))) |
f | 408 | net/inet/ip_fw.c | f->p_cnt++; /* Rise packet count */ |
f | 413 | net/inet/ip_fw.c | f->b_cnt+=ntohs(ip->tot_len); |
f | 415 | net/inet/ip_fw.c | f->b_cnt+=ip->tot_len; |
f | 423 | net/inet/ipx.c | struct ipx_route_def f; |
f | 424 | net/inet/ipx.c | err=verify_area(VERIFY_READ,arg,sizeof(f)); |
f | 427 | net/inet/ipx.c | memcpy_fromfs(&f,arg,sizeof(f)); |
f | 428 | net/inet/ipx.c | return ipxrtr_create(&f); |