taglinefilesource code
count15fs/block_dev.cint block_write(struct inode * inode, struct file * filp, char * buf, int count)
count31fs/block_dev.cwhile (count>0) {
count35fs/block_dev.cif (chars > count)
count36fs/block_dev.cchars=count;
count48fs/block_dev.ccount -= chars;
count59fs/block_dev.cint block_read(struct inode * inode, struct file * filp, char * buf, int count)
count75fs/block_dev.cwhile (count>0) {
count79fs/block_dev.cif (chars > count)
count80fs/block_dev.cchars = count;
count88fs/block_dev.ccount -= chars;
count410fs/exec.cargc = count(argv);
count411fs/exec.cenvc = count(envp);
count56fs/ext/dir.cstruct dirent * dirent, int count)
count76fs/ext/file.cstatic int ext_file_read(struct inode * inode, struct file * filp, char * buf, int count)
count95fs/ext/file.cif (left > count)
count96fs/ext/file.cleft = count;
count160fs/ext/file.cstatic int ext_file_write(struct inode * inode, struct file * filp, char * buf, int count)
count184fs/ext/file.cwhile (written<count) {
count191fs/ext/file.cif (c > count-written)
count192fs/ext/file.cc = count-written;
count74fs/ext/freelists.cif (!sb->u.ext_sb.s_zmap[1] || efb->count == 254) {
count84fs/ext/freelists.cefb->count = 0;
count87fs/ext/freelists.cefb->free[efb->count++] = block;
count109fs/ext/freelists.cif (efb->count) {
count110fs/ext/freelists.cj = efb->free[--efb->count];
count153fs/ext/freelists.cunsigned long count, block;
count157fs/ext/freelists.ccount = 0;
count160fs/ext/freelists.ccount = efb->count + 1;
count168fs/ext/freelists.ccount += efb->count + 1;
count175fs/ext/freelists.c(unsigned long) sb->u.ext_sb.s_zmap[2], count);
count177fs/ext/freelists.creturn count;
count216fs/ext/freelists.cif (!inode->i_sb->u.ext_sb.s_imap[1] || efi->count == 14) {
count228fs/ext/freelists.cefi->count = 0;
count232fs/ext/freelists.cefi->free[efi->count++] = inode->i_ino;
count261fs/ext/freelists.cif (efi->count) {
count262fs/ext/freelists.cj = efi->free[--efi->count];
count306fs/ext/freelists.cunsigned long count, block, ino;
count310fs/ext/freelists.ccount = 0;
count314fs/ext/freelists.ccount = efi->count + 1;
count329fs/ext/freelists.ccount += efi->count + 1;
count336fs/ext/freelists.c(unsigned long) sb->u.ext_sb.s_imap[2], count);
count338fs/ext/freelists.creturn count;
count50fs/minix/dir.cstruct dirent * dirent, int count)
count76fs/minix/file.cint minix_file_read(struct inode * inode, struct file * filp, char * buf, int count)
count95fs/minix/file.cif (left > count)
count96fs/minix/file.cleft = count;
count160fs/minix/file.cstatic int minix_file_write(struct inode * inode, struct file * filp, char * buf, int count)
count184fs/minix/file.cwhile (written<count) {
count191fs/minix/file.cif (c > count-written)
count192fs/minix/file.cc = count-written;
count18fs/msdos/dir.cint count);
count20fs/msdos/dir.cstruct dirent *dirent,int count);
count55fs/msdos/dir.cint count)
count68fs/msdos/dir.cstruct dirent *dirent,int count)
count104fs/msdos/fat.cint count;
count108fs/msdos/fat.cfor (count = 0; count < FAT_CACHE; count++) {
count109fs/msdos/fat.ccache[count].device = 0;
count110fs/msdos/fat.ccache[count].next = count == FAT_CACHE-1 ? NULL :
count111fs/msdos/fat.c&cache[count+1];
count212fs/msdos/fat.cint this,count;
count216fs/msdos/fat.ccount = 0;
count217fs/msdos/fat.cfor (cache_lookup(inode,cluster,&count,&this); count < cluster;
count218fs/msdos/fat.ccount++) {
count23fs/msdos/file.cint count);
count25fs/msdos/file.cint count);
count77fs/msdos/file.cint count)
count94fs/msdos/file.cif (filp->f_pos >= inode->i_size || count <= 0) return 0;
count96fs/msdos/file.cwhile (left = MIN(inode->i_size-filp->f_pos,count-(buf-start))) {
count126fs/msdos/file.cint count)
count147fs/msdos/file.cif (count <= 0) return 0;
count149fs/msdos/file.cfor (start = buf; count || carry; count -= size) {
count154fs/msdos/file.csize = MIN(SECTOR_SIZE-offset,MAX(carry,count));
count172fs/msdos/file.cfor (size = 0; size < count && left; size++) {
count65fs/msdos/misc.cint count,this,limit,last,current,sector;
count74fs/msdos/misc.cfor (count = 0; count < limit; count++) {
count75fs/msdos/misc.cthis = ((count+previous) % limit)+2;
count81fs/msdos/misc.cprevious = (count+previous+1) % limit;
count82fs/msdos/misc.cif (count >= limit) {
count304fs/msdos/misc.cint count,cluster;
count306fs/msdos/misc.cfor (count = 0; count < MSDOS_SB(sb)->dir_entries/MSDOS_DPS; count++) {
count307fs/msdos/misc.cif ((cluster = raw_found(sb,MSDOS_SB(sb)->dir_start+count,name,
count317fs/msdos/misc.cint count,cluster;
count320fs/msdos/misc.cfor (count = 0; count < MSDOS_SB(sb)->cluster_size; count++) {
count322fs/msdos/misc.ccluster_size+MSDOS_SB(sb)->data_start+count,name,
count16fs/pipe.cstatic int pipe_read(struct inode * inode, struct file * filp, char * buf, int count)
count29fs/pipe.cwhile (count>0 && (size = PIPE_SIZE(*inode))) {
count31fs/pipe.cif (chars > count)
count32fs/pipe.cchars = count;
count39fs/pipe.ccount -= chars;
count46fs/pipe.cstatic int pipe_write(struct inode * inode, struct file * filp, char * buf, int count)
count55fs/pipe.cif (count < PAGE_SIZE)
count56fs/pipe.csize = PAGE_SIZE-count;
count59fs/pipe.cwhile (count>0) {
count72fs/pipe.cwhile (count>0 && (size = (PAGE_SIZE-1)-PIPE_SIZE(*inode))) {
count74fs/pipe.cif (chars > count)
count75fs/pipe.cchars = count;
count82fs/pipe.ccount -= chars;
count96fs/pipe.cstatic int pipe_readdir(struct inode * inode, struct file * file, struct dirent * de, int count)
count101fs/pipe.cstatic int bad_pipe_rw(struct inode * inode, struct file * filp, char * buf, int count)
count20fs/read_write.cint sys_readdir(unsigned int fd, struct dirent * dirent, unsigned int count)
count30fs/read_write.creturn file->f_op->readdir(inode,file,dirent,count);
count68fs/read_write.cint sys_read(unsigned int fd,char * buf,unsigned int count)
count77fs/read_write.cif (!count)
count79fs/read_write.cverify_area(buf,count);
count81fs/read_write.creturn file->f_op->read(inode,file,buf,count);
count85fs/read_write.cint sys_write(unsigned int fd,char * buf,unsigned int count)
count94fs/read_write.cif (!count)
count97fs/read_write.creturn file->f_op->write(inode,file,buf,count);
count74fs/select.cint count;
count101fs/select.ccount = 0;
count109fs/select.ccount++;
count114fs/select.ccount++;
count119fs/select.ccount++;
count123fs/select.ccurrent->timeout && !count) {
count130fs/select.creturn count;
count38include/linux/ext_fs.hunsigned long count;
count44include/linux/ext_fs.hunsigned long count;
count180include/linux/fs.hint (*readdir) (struct inode *, struct file *, struct dirent *, int count);
count8include/linux/kernel.hvoid verify_area(void * addr,int count);
count31include/linux/string.hextern inline char * strncpy(char * dest,const char *src,size_t count)
count43include/linux/string.h::"S" (src),"D" (dest),"c" (count):"si","di","ax","cx");
count61include/linux/string.hextern inline char * strncat(char * dest,const char * src,size_t count)
count76include/linux/string.h::"S" (src),"D" (dest),"a" (0),"c" (0xffffffff),"g" (count)
count100include/linux/string.hextern inline int strncmp(const char * cs,const char * ct,size_t count)
count117include/linux/string.h:"=a" (__res):"D" (cs),"S" (ct),"c" (count):"si","di","cx");
count357include/linux/string.hextern inline int memcmp(const void * cs,const void * ct,size_t count)
count368include/linux/string.h:"=a" (__res):"0" (0),"D" (cs),"S" (ct),"c" (count)
count373include/linux/string.hextern inline void * memchr(const void * cs,char c,size_t count)
count376include/linux/string.hif (!count)
count384include/linux/string.h:"=D" (__res):"a" (c),"D" (cs),"c" (count)
count389include/linux/string.hextern inline void * memset(void * s,char c,size_t count)
count394include/linux/string.h::"a" (c),"D" (s),"c" (count)
count151include/linux/tty.hint count;
count38init/main.cstatic inline _syscall3(int,write,int,fd,const char *,buf,off_t,count)
count345kernel/blk_drv/floppy.cunsigned long addr,count;
count349kernel/blk_drv/floppy.ccount = floppy->sect*4;
count353kernel/blk_drv/floppy.ccount = 1024;
count358kernel/blk_drv/floppy.ccount = floppy->sect*2*512;
count383kernel/blk_drv/floppy.ccount--;
count384kernel/blk_drv/floppy.cimmoutb_p(count,5);
count385kernel/blk_drv/floppy.ccount >>= 8;
count387kernel/blk_drv/floppy.cimmoutb_p(count,5);
count395kernel/blk_drv/floppy.cSET_DMA_COUNT(DMA2, count);
count882kernel/blk_drv/floppy.cint count;
count885kernel/blk_drv/floppy.cfor (count = 1; count <= floppy->sect; count++) {
count888kernel/blk_drv/floppy.c*here++ = count;
count140kernel/blk_drv/ll_rw_blk.cunsigned int sector, count;
count158kernel/blk_drv/ll_rw_blk.ccount = bh->b_size >> 9;
count159kernel/blk_drv/ll_rw_blk.csector = bh->b_blocknr * count;
count161kernel/blk_drv/ll_rw_blk.cif (blk_size[major][MINOR(bh->b_dev)] < (sector + count)>>1) {
count181kernel/blk_drv/ll_rw_blk.creq->nr_sectors += count;
count216kernel/blk_drv/ll_rw_blk.creq->nr_sectors = count;
count217kernel/blk_drv/ll_rw_blk.creq->current_nr_sectors = count;
count232kernel/blk_drv/scsi/fdomain.c#define insw( buf, count, port ) \
count234kernel/blk_drv/scsi/fdomain.c( "cld;rep;insw"::"d" (port),"D" (buf),"c" (count):"cx","di" )
count236kernel/blk_drv/scsi/fdomain.c#define outsw( buf, count, port) \
count238kernel/blk_drv/scsi/fdomain.c("cld;rep;outsw"::"d" (port),"S" (buf),"c" (count):"cx","si")
count124kernel/blk_drv/scsi/hosts.cint i, count;  
count128kernel/blk_drv/scsi/hosts.cfor (count = i = 0; i < MAX_SCSI_HOSTS; ++i)
count142kernel/blk_drv/scsi/hosts.ccount, scsi_hosts[i].name);
count144kernel/blk_drv/scsi/hosts.c++count;
count147kernel/blk_drv/scsi/hosts.cprintk ("scsi : %d hosts. \n\r", count);
count430kernel/chr_drv/console.cunsigned long count;
count435kernel/chr_drv/console.ccount = (scr_end-pos)>>1;
count439kernel/chr_drv/console.ccount = ((pos-origin)>>1)+1;
count443kernel/chr_drv/console.ccount = video_num_columns * video_num_lines;
count452kernel/chr_drv/console.c::"c" (count),
count460kernel/chr_drv/console.clong count;
count465kernel/chr_drv/console.ccount = video_num_columns-x;
count470kernel/chr_drv/console.ccount = x+1;
count474kernel/chr_drv/console.ccount = video_num_columns;
count482kernel/chr_drv/console.c::"c" (count),
count1220kernel/chr_drv/console.cvoid * memsetw(void * s,unsigned short c,int count)
count1225kernel/chr_drv/console.c::"a" (c),"D" (s),"c" (count)
count29kernel/chr_drv/lp.cunsigned long count  = 0; 
count35kernel/chr_drv/lp.ccount ++;
count36kernel/chr_drv/lp.c} while(!(retval & LP_PBUSY) && count < LP_TIMEOUT);
count37kernel/chr_drv/lp.cif (count == LP_TIMEOUT) {
count49kernel/chr_drv/lp.cstatic int lp_write(struct inode * inode, struct file * file, char * buf, int count)
count56kernel/chr_drv/lp.cwhile (count > 0) {
count59kernel/chr_drv/lp.ccount--;
count82kernel/chr_drv/lp.cstatic int lp_read(struct inode * inode, struct file * file, char * buf, int count)
count128kernel/chr_drv/lp.cint count = 0;
count142kernel/chr_drv/lp.ccount++;
count145kernel/chr_drv/lp.cif (count == 0)
count17kernel/chr_drv/mem.cstatic int read_ram(struct inode * inode, struct file * file,char * buf, int count)
count22kernel/chr_drv/mem.cstatic int write_ram(struct inode * inode, struct file * file,char * buf, int count)
count27kernel/chr_drv/mem.cstatic int read_mem(struct inode * inode, struct file * file,char * buf, int count)
count34kernel/chr_drv/mem.cif (count < 0)
count38kernel/chr_drv/mem.cwhile (count > 0) {
count53kernel/chr_drv/mem.cif (i > count)
count54kernel/chr_drv/mem.ci = count;
count58kernel/chr_drv/mem.ccount -= i;
count64kernel/chr_drv/mem.cstatic int write_mem(struct inode * inode, struct file * file,char * buf, int count)
count71kernel/chr_drv/mem.cif (count < 0)
count75kernel/chr_drv/mem.cwhile (count > 0) {
count94kernel/chr_drv/mem.cif (i > count)
count95kernel/chr_drv/mem.ci = count;
count99kernel/chr_drv/mem.ccount -= i;
count109kernel/chr_drv/mem.cstatic int read_kmem(struct inode * inode, struct file * file,char * buf, int count)
count113kernel/chr_drv/mem.cif (count < 0)
count117kernel/chr_drv/mem.cif (count > high_memory - p)
count118kernel/chr_drv/mem.ccount = high_memory - p;
count119kernel/chr_drv/mem.cmemcpy_tofs(buf,(void *) p,count);
count120kernel/chr_drv/mem.cfile->f_pos += count;
count121kernel/chr_drv/mem.creturn count;
count124kernel/chr_drv/mem.cstatic int write_kmem(struct inode * inode, struct file * file,char * buf, int count)
count128kernel/chr_drv/mem.cif (count < 0)
count132kernel/chr_drv/mem.cif (count > high_memory - p)
count133kernel/chr_drv/mem.ccount = high_memory - p;
count134kernel/chr_drv/mem.cmemcpy_fromfs((void *) p,buf,count);
count135kernel/chr_drv/mem.cfile->f_pos += count;
count136kernel/chr_drv/mem.creturn count;
count139kernel/chr_drv/mem.cstatic int read_port(struct inode * inode,struct file * file,char * buf, int count)
count144kernel/chr_drv/mem.cwhile (count-- > 0 && i < 65536) {
count153kernel/chr_drv/mem.cstatic int write_port(struct inode * inode,struct file * file,char * buf, int count)
count158kernel/chr_drv/mem.cwhile (count-- > 0 && i < 65536) {
count167kernel/chr_drv/mem.cstatic int read_zero(struct inode *node,struct file *file,char *buf,int count)
count171kernel/chr_drv/mem.cfor (left = count; left > 0; left--) {
count175kernel/chr_drv/mem.creturn count;
count203kernel/chr_drv/mem.cstatic int mem_read(struct inode * inode, struct file * file, char * buf, int count)
count207kernel/chr_drv/mem.creturn read_ram(inode,file,buf,count);
count209kernel/chr_drv/mem.creturn read_mem(inode,file,buf,count);
count211kernel/chr_drv/mem.creturn read_kmem(inode,file,buf,count);
count215kernel/chr_drv/mem.creturn read_port(inode,file,buf,count);
count217kernel/chr_drv/mem.creturn read_zero(inode,file,buf,count);
count223kernel/chr_drv/mem.cstatic int mem_write(struct inode * inode, struct file * file, char * buf, int count)
count227kernel/chr_drv/mem.creturn write_ram(inode,file,buf,count);
count229kernel/chr_drv/mem.creturn write_mem(inode,file,buf,count);
count231kernel/chr_drv/mem.creturn write_kmem(inode,file,buf,count);
count233kernel/chr_drv/mem.creturn count;  /* /dev/null */
count235kernel/chr_drv/mem.creturn write_port(inode,file,buf,count);
count237kernel/chr_drv/mem.creturn count; /* /dev/zero */
count97kernel/chr_drv/mouse.cstatic int write_mouse(struct inode * inode, struct file * file, char * buffer, int count)
count102kernel/chr_drv/mouse.cstatic int read_mouse(struct inode * inode, struct file * file, char * buffer, int count)
count106kernel/chr_drv/mouse.cif (count < 3) return -EINVAL;
count123kernel/chr_drv/mouse.cfor (i = 3; i < count; i++)
count33kernel/chr_drv/pty.cwhile (!tty->link->count && !(current->signal & ~current->blocked))
count35kernel/chr_drv/pty.cif (!tty->link->count)
count287kernel/chr_drv/tty_io.cif (tty->link->count)
count368kernel/chr_drv/tty_io.cif (tty->link && !tty->link->count)
count417kernel/chr_drv/tty_io.cif (tty->link && !tty->link->count) {
count454kernel/chr_drv/tty_io.cif (tty->link && !tty->link->count)
count461kernel/chr_drv/tty_io.cstatic int tty_read(struct inode * inode, struct file * file, char * buf, int count)
count469kernel/chr_drv/tty_io.ci = read_chan(MINOR(file->f_rdev),file,buf,count);
count475kernel/chr_drv/tty_io.cstatic int tty_write(struct inode * inode, struct file * file, char * buf, int count)
count483kernel/chr_drv/tty_io.ci = write_chan(MINOR(file->f_rdev),file,buf,count);
count516kernel/chr_drv/tty_io.cif (!tty->count && !(tty->link && tty->link->count)) {
count522kernel/chr_drv/tty_io.cif (tty->count)
count525kernel/chr_drv/tty_io.ctty->link->count++;
count527kernel/chr_drv/tty_io.ctty->count++;
count537kernel/chr_drv/tty_io.cif (IS_A_SERIAL(dev) && tty->count < 2)
count542kernel/chr_drv/tty_io.ctty->count--;
count544kernel/chr_drv/tty_io.ctty->link->count--;
count567kernel/chr_drv/tty_io.ctty->link->count--;
count568kernel/chr_drv/tty_io.ctty->count--;
count569kernel/chr_drv/tty_io.cif (tty->count)
count576kernel/chr_drv/tty_io.cif (!tty->count && (tty == redirect))
count579kernel/chr_drv/tty_io.cif (!tty->count && (tty == redirect))
count599kernel/chr_drv/tty_io.cif (tty->link && !tty->link->count)
count609kernel/chr_drv/tty_io.cif (tty->link && !tty->link->count)
count225kernel/exit.cint err, retval = 0, count = 0;
count232kernel/exit.c++count;
count236kernel/exit.creturn(count ? retval : -ESRCH);
count11lib/write.c_syscall3(int,write,int,fd,const char *,buf,off_t,count)
count47net/socket.cstruct dirent *dirent, int count);
count263net/socket.cint count)