tag | line | file | source code |
count | 16 | fs/block_dev.c | int block_write(struct inode * inode, struct file * filp, char * buf, int count) |
count | 32 | fs/block_dev.c | while (count>0) { |
count | 36 | fs/block_dev.c | if (chars > count) |
count | 37 | fs/block_dev.c | chars=count; |
count | 49 | fs/block_dev.c | count -= chars; |
count | 62 | fs/block_dev.c | int block_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 87 | fs/block_dev.c | if (left > count) |
count | 88 | fs/block_dev.c | left = count; |
count | 385 | fs/exec.c | char * addr, unsigned long count) |
count | 409 | fs/exec.c | result = file.f_op->read(inode, &file, addr, count); |
count | 445 | fs/exec.c | argc = count(argv); |
count | 446 | fs/exec.c | envc = count(envp); |
count | 23 | fs/ext/dir.c | static int ext_dir_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 65 | fs/ext/dir.c | struct dirent * dirent, int count) |
count | 72 | fs/ext/file.c | static int ext_file_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 96 | fs/ext/file.c | if (left > count) |
count | 97 | fs/ext/file.c | left = count; |
count | 193 | fs/ext/file.c | static int ext_file_write(struct inode * inode, struct file * filp, char * buf, int count) |
count | 217 | fs/ext/file.c | while (written<count) { |
count | 225 | fs/ext/file.c | if (c > count-written) |
count | 226 | fs/ext/file.c | c = count-written; |
count | 67 | fs/ext/freelists.c | if (!sb->u.ext_sb.s_firstfreeblock || efb->count == 254) { |
count | 78 | fs/ext/freelists.c | efb->count = 0; |
count | 81 | fs/ext/freelists.c | efb->free[efb->count++] = block; |
count | 104 | fs/ext/freelists.c | if (efb->count) { |
count | 105 | fs/ext/freelists.c | j = efb->free[--efb->count]; |
count | 151 | fs/ext/freelists.c | unsigned long count, block; |
count | 155 | fs/ext/freelists.c | count = 0; |
count | 158 | fs/ext/freelists.c | count = efb->count + 1; |
count | 166 | fs/ext/freelists.c | count += efb->count + 1; |
count | 173 | fs/ext/freelists.c | sb->u.ext_sb.s_freeblockscount, count); |
count | 175 | fs/ext/freelists.c | return count; |
count | 214 | fs/ext/freelists.c | if (!inode->i_sb->u.ext_sb.s_firstfreeinodeblock || efi->count == 14) { |
count | 226 | fs/ext/freelists.c | efi->count = 0; |
count | 230 | fs/ext/freelists.c | efi->free[efi->count++] = inode->i_ino; |
count | 257 | fs/ext/freelists.c | if (efi->count) { |
count | 258 | fs/ext/freelists.c | j = efi->free[--efi->count]; |
count | 304 | fs/ext/freelists.c | unsigned long count, block, ino; |
count | 308 | fs/ext/freelists.c | count = 0; |
count | 312 | fs/ext/freelists.c | count = efi->count + 1; |
count | 327 | fs/ext/freelists.c | count += efi->count + 1; |
count | 334 | fs/ext/freelists.c | sb->u.ext_sb.s_freeinodescount, count); |
count | 336 | fs/ext/freelists.c | return count; |
count | 25 | fs/ext2/dir.c | char * buf, int count) |
count | 94 | fs/ext2/dir.c | struct dirent * dirent, int count) |
count | 73 | fs/ext2/file.c | char * buf, int count) |
count | 99 | fs/ext2/file.c | if (left > count) |
count | 100 | fs/ext2/file.c | left = count; |
count | 199 | fs/ext2/file.c | char * buf, int count) |
count | 226 | fs/ext2/file.c | while (written < count) { |
count | 237 | fs/ext2/file.c | if (c > count-written) |
count | 238 | fs/ext2/file.c | c = count - written; |
count | 64 | fs/isofs/dir.c | struct dirent * dirent, int count) |
count | 113 | fs/isofs/file.c | static int isofs_file_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 137 | fs/isofs/file.c | if (left > count) |
count | 138 | fs/isofs/file.c | left = count; |
count | 16 | fs/minix/dir.c | static int minix_dir_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 58 | fs/minix/dir.c | struct dirent * dirent, int count) |
count | 66 | fs/minix/file.c | static int minix_file_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 90 | fs/minix/file.c | if (left > count) |
count | 91 | fs/minix/file.c | left = count; |
count | 187 | fs/minix/file.c | static int minix_file_write(struct inode * inode, struct file * filp, char * buf, int count) |
count | 211 | fs/minix/file.c | while (written<count) { |
count | 219 | fs/minix/file.c | if (c > count-written) |
count | 220 | fs/minix/file.c | c = count-written; |
count | 17 | fs/msdos/dir.c | static int msdos_dir_read(struct inode * inode,struct file * filp, char * buf,int count) |
count | 23 | fs/msdos/dir.c | struct dirent *dirent,int count); |
count | 58 | fs/msdos/dir.c | struct dirent *dirent,int count) |
count | 107 | fs/msdos/fat.c | int count; |
count | 111 | fs/msdos/fat.c | for (count = 0; count < FAT_CACHE; count++) { |
count | 112 | fs/msdos/fat.c | cache[count].device = 0; |
count | 113 | fs/msdos/fat.c | cache[count].next = count == FAT_CACHE-1 ? NULL : |
count | 114 | fs/msdos/fat.c | &cache[count+1]; |
count | 223 | fs/msdos/fat.c | int this,count; |
count | 227 | fs/msdos/fat.c | count = 0; |
count | 228 | fs/msdos/fat.c | for (cache_lookup(inode,cluster,&count,&this); count < cluster; |
count | 229 | fs/msdos/fat.c | count++) { |
count | 23 | fs/msdos/file.c | int count); |
count | 25 | fs/msdos/file.c | int count); |
count | 81 | fs/msdos/file.c | int count) |
count | 98 | fs/msdos/file.c | if (filp->f_pos >= inode->i_size || count <= 0) return 0; |
count | 100 | fs/msdos/file.c | while ((left = MIN(inode->i_size-filp->f_pos,count-(buf-start))) > 0){ |
count | 130 | fs/msdos/file.c | int count) |
count | 151 | fs/msdos/file.c | if (count <= 0) return 0; |
count | 153 | fs/msdos/file.c | for (start = buf; count || carry; count -= size) { |
count | 161 | fs/msdos/file.c | size = MIN(SECTOR_SIZE-offset,MAX(carry,count)); |
count | 179 | fs/msdos/file.c | for (size = 0; size < count && left; size++) { |
count | 111 | fs/msdos/misc.c | int count,this,limit,last,current,sector; |
count | 120 | fs/msdos/misc.c | for (count = 0; count < limit; count++) { |
count | 121 | fs/msdos/misc.c | this = ((count+MSDOS_SB(inode->i_sb)->prev_free) % limit)+2; |
count | 127 | fs/msdos/misc.c | MSDOS_SB(inode->i_sb)->prev_free = (count+MSDOS_SB(inode->i_sb)-> |
count | 129 | fs/msdos/misc.c | if (count >= limit) { |
count | 389 | fs/msdos/misc.c | int count,cluster; |
count | 391 | fs/msdos/misc.c | for (count = 0; count < MSDOS_SB(sb)->dir_entries/MSDOS_DPS; count++) { |
count | 392 | fs/msdos/misc.c | if ((cluster = raw_scan_sector(sb,MSDOS_SB(sb)->dir_start+count, |
count | 408 | fs/msdos/misc.c | int count,cluster; |
count | 414 | fs/msdos/misc.c | for (count = 0; count < MSDOS_SB(sb)->cluster_size; count++) { |
count | 417 | fs/msdos/misc.c | count,name,number,ino,res_bh,res_de)) >= 0) |
count | 493 | fs/msdos/misc.c | int count; |
count | 495 | fs/msdos/misc.c | count = 0; |
count | 497 | fs/msdos/misc.c | (void) raw_scan_root(dir->i_sb,NULL,&count,NULL,NULL,NULL); |
count | 501 | fs/msdos/misc.c | NULL,&count,NULL,NULL,NULL); |
count | 503 | fs/msdos/misc.c | return count; |
count | 21 | fs/nfs/dir.c | int count); |
count | 72 | fs/nfs/dir.c | int count) |
count | 86 | fs/nfs/dir.c | struct dirent *dirent, int count) |
count | 54 | fs/nfs/file.c | int count) |
count | 74 | fs/nfs/file.c | if (file->f_pos + count > inode->i_size) |
count | 75 | fs/nfs/file.c | count = inode->i_size - pos; |
count | 76 | fs/nfs/file.c | if (count <= 0) |
count | 80 | fs/nfs/file.c | for (i = 0; i < count; i += n) { |
count | 81 | fs/nfs/file.c | hunk = count - i; |
count | 105 | fs/nfs/file.c | int count) |
count | 124 | fs/nfs/file.c | if (count <= 0) |
count | 131 | fs/nfs/file.c | for (i = 0; i < count; i += n) { |
count | 132 | fs/nfs/file.c | hunk = count - i; |
count | 281 | fs/nfs/proc.c | int offset, int count, char *data, struct nfs_fattr *fattr) |
count | 287 | fs/nfs/proc.c | PRINTK("NFS call read %d @ %d\n", count, offset); |
count | 292 | fs/nfs/proc.c | *p++ = htonl(count); |
count | 293 | fs/nfs/proc.c | *p++ = htonl(count); /* traditional, could be any value */ |
count | 302 | fs/nfs/proc.c | if (!(p = xdr_decode_data(p, data, &len, count))) { |
count | 316 | fs/nfs/proc.c | int offset, int count, char *data, struct nfs_fattr *fattr) |
count | 321 | fs/nfs/proc.c | PRINTK("NFS call write %d @ %d\n", count, offset); |
count | 327 | fs/nfs/proc.c | *p++ = htonl(count); /* traditional, could be any value */ |
count | 328 | fs/nfs/proc.c | p = xdr_encode_data(p, data, count); |
count | 540 | fs/nfs/proc.c | int cookie, int count, struct nfs_entry *entry) |
count | 548 | fs/nfs/proc.c | PRINTK("NFS call readdir %d @ %d\n", count, cookie); |
count | 562 | fs/nfs/proc.c | for (i = 0; i < count && *p++; i++) { |
count | 571 | fs/nfs/proc.c | eof = (i == count && !*p++ && *p++) |
count | 572 | fs/nfs/proc.c | || (i < count && *p++); |
count | 16 | fs/pipe.c | static int pipe_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 29 | fs/pipe.c | while (count>0 && (size = PIPE_SIZE(*inode))) { |
count | 31 | fs/pipe.c | if (chars > count) |
count | 32 | fs/pipe.c | chars = count; |
count | 39 | fs/pipe.c | count -= chars; |
count | 50 | fs/pipe.c | static int pipe_write(struct inode * inode, struct file * filp, char * buf, int count) |
count | 59 | fs/pipe.c | if (count < PAGE_SIZE) |
count | 60 | fs/pipe.c | size = PAGE_SIZE-count; |
count | 63 | fs/pipe.c | while (count>0) { |
count | 76 | fs/pipe.c | while (count>0 && (size = (PAGE_SIZE-1)-PIPE_SIZE(*inode))) { |
count | 78 | fs/pipe.c | if (chars > count) |
count | 79 | fs/pipe.c | chars = count; |
count | 86 | fs/pipe.c | count -= chars; |
count | 100 | fs/pipe.c | static int pipe_readdir(struct inode * inode, struct file * file, struct dirent * de, int count) |
count | 105 | fs/pipe.c | static int bad_pipe_rw(struct inode * inode, struct file * filp, char * buf, int count) |
count | 162 | fs/proc/array.c | int count = 0; |
count | 176 | fs/proc/array.c | } while (count++ < 16); |
count | 295 | fs/proc/array.c | static int array_read(struct inode * inode, struct file * file,char * buf, int count) |
count | 302 | fs/proc/array.c | if (count < 0) |
count | 343 | fs/proc/array.c | if (count + file->f_pos > length) |
count | 344 | fs/proc/array.c | count = length - file->f_pos; |
count | 345 | fs/proc/array.c | end = count + file->f_pos; |
count | 346 | fs/proc/array.c | memcpy_tofs(buf, page + file->f_pos, count); |
count | 349 | fs/proc/array.c | return count; |
count | 132 | fs/proc/base.c | struct dirent * dirent, int count) |
count | 122 | fs/proc/fd.c | struct dirent * dirent, int count) |
count | 20 | fs/proc/kmsg.c | extern int sys_syslog(int type, char * bug, int count); |
count | 32 | fs/proc/kmsg.c | static int kmsg_read(struct inode * inode, struct file * file,char * buf, int count) |
count | 34 | fs/proc/kmsg.c | return sys_syslog(2,buf,count); |
count | 23 | fs/proc/mem.c | static int mem_read(struct inode * inode, struct file * file,char * buf, int count) |
count | 30 | fs/proc/mem.c | if (count < 0) |
count | 44 | fs/proc/mem.c | while (count > 0) { |
count | 59 | fs/proc/mem.c | if (i > count) |
count | 60 | fs/proc/mem.c | i = count; |
count | 64 | fs/proc/mem.c | count -= i; |
count | 72 | fs/proc/mem.c | static int mem_write(struct inode * inode, struct file * file,char * buf, int count) |
count | 79 | fs/proc/mem.c | if (count < 0) |
count | 93 | fs/proc/mem.c | while (count > 0) { |
count | 112 | fs/proc/mem.c | if (i > count) |
count | 113 | fs/proc/mem.c | i = count; |
count | 117 | fs/proc/mem.c | count -= i; |
count | 124 | fs/proc/root.c | struct dirent * dirent, int count) |
count | 19 | fs/read_write.c | int sys_readdir(unsigned int fd, struct dirent * dirent, unsigned int count) |
count | 32 | fs/read_write.c | error = file->f_op->readdir(inode,file,dirent,count); |
count | 70 | fs/read_write.c | int sys_read(unsigned int fd,char * buf,unsigned int count) |
count | 82 | fs/read_write.c | if (!count) |
count | 84 | fs/read_write.c | error = verify_area(VERIFY_WRITE,buf,count); |
count | 87 | fs/read_write.c | return file->f_op->read(inode,file,buf,count); |
count | 90 | fs/read_write.c | int sys_write(unsigned int fd,char * buf,unsigned int count) |
count | 102 | fs/read_write.c | if (!count) |
count | 104 | fs/read_write.c | error = verify_area(VERIFY_READ,buf,count); |
count | 107 | fs/read_write.c | return file->f_op->write(inode,file,buf,count); |
count | 81 | fs/select.c | int count; |
count | 113 | fs/select.c | count = 0; |
count | 122 | fs/select.c | count++; |
count | 127 | fs/select.c | count++; |
count | 132 | fs/select.c | count++; |
count | 137 | fs/select.c | if (!count && current->timeout && !(current->signal & ~current->blocked)) { |
count | 144 | fs/select.c | return count; |
count | 60 | fs/xiafs/dir.c | struct file * filp, char * buf, int count) |
count | 66 | fs/xiafs/dir.c | struct file * filp, struct dirent * dirent, int count) |
count | 70 | fs/xiafs/file.c | xiafs_file_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 89 | fs/xiafs/file.c | if (left > count) |
count | 90 | fs/xiafs/file.c | left = count; |
count | 186 | fs/xiafs/file.c | xiafs_file_write(struct inode * inode, struct file * filp, char * buf, int count) |
count | 210 | fs/xiafs/file.c | while (written < count) { |
count | 218 | fs/xiafs/file.c | if (c > count-written) |
count | 219 | fs/xiafs/file.c | c = count-written; |
count | 223 | include/asm/dma.h | static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count) |
count | 225 | include/asm/dma.h | count--; |
count | 227 | include/asm/dma.h | outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE ); |
count | 228 | include/asm/dma.h | outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE ); |
count | 230 | include/asm/dma.h | outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE ); |
count | 231 | include/asm/dma.h | outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE ); |
count | 250 | include/asm/dma.h | unsigned short count; |
count | 252 | include/asm/dma.h | count = 1 + inb(io_port); |
count | 253 | include/asm/dma.h | count += inb(io_port) << 8; |
count | 255 | include/asm/dma.h | return (dmanr<=3)? count : (count<<1); |
count | 26 | include/linux/ext_fs.h | unsigned long count; |
count | 32 | include/linux/ext_fs.h | unsigned long count; |
count | 11 | include/linux/kernel.h | int verify_area(int type, void * addr, unsigned long count); |
count | 68 | include/linux/nfs_fs.h | int offset, int count, char *data, |
count | 71 | include/linux/nfs_fs.h | int offset, int count, char *data, |
count | 91 | include/linux/nfs_fs.h | int cookie, int count, struct nfs_entry *entry); |
count | 34 | include/linux/serial.h | int count; /* # of fd on device */ |
count | 33 | include/linux/string.h | extern inline char * strncpy(char * dest,const char *src,size_t count) |
count | 45 | include/linux/string.h | ::"S" (src),"D" (dest),"c" (count):"si","di","ax","cx"); |
count | 63 | include/linux/string.h | extern inline char * strncat(char * dest,const char * src,size_t count) |
count | 78 | include/linux/string.h | ::"S" (src),"D" (dest),"a" (0),"c" (0xffffffff),"g" (count) |
count | 102 | include/linux/string.h | extern inline int strncmp(const char * cs,const char * ct,size_t count) |
count | 119 | include/linux/string.h | :"=a" (__res):"D" (cs),"S" (ct),"c" (count):"si","di","cx"); |
count | 367 | include/linux/string.h | extern inline int memcmp(const void * cs,const void * ct,size_t count) |
count | 378 | include/linux/string.h | :"=a" (__res):"0" (0),"D" (cs),"S" (ct),"c" (count) |
count | 383 | include/linux/string.h | extern inline void * memchr(const void * cs,char c,size_t count) |
count | 386 | include/linux/string.h | if (!count) |
count | 394 | include/linux/string.h | :"=D" (__res):"a" (c),"D" (cs),"c" (count) |
count | 399 | include/linux/string.h | extern inline void * memset(void * s,char c,size_t count) |
count | 404 | include/linux/string.h | ::"a" (c),"D" (s),"c" (count) |
count | 211 | include/linux/tty.h | int count; |
count | 120 | include/linux/xd.h | static int xd_readwrite (u_char operation,u_char drive,u_char *buffer,u_int block,u_int count); |
count | 124 | include/linux/xd.h | static u_char xd_setup_dma (u_char opcode,u_char *buffer,u_int count); |
count | 125 | include/linux/xd.h | static u_char *xd_build (u_char *cmdblk,u_char command,u_char drive,u_char head,u_short cylinder,u_char sector,u_char count,u_char control); |
count | 47 | init/main.c | static inline _syscall3(int,write,int,fd,const char *,buf,off_t,count) |
count | 358 | kernel/blk_drv/floppy.c | unsigned long addr,count; |
count | 366 | kernel/blk_drv/floppy.c | count = floppy->sect*4; |
count | 369 | kernel/blk_drv/floppy.c | count = 1024; |
count | 374 | kernel/blk_drv/floppy.c | count = floppy->sect*2*512; |
count | 386 | kernel/blk_drv/floppy.c | set_dma_count(FLOPPY_DMA, count); |
count | 903 | kernel/blk_drv/floppy.c | int count,head_shift,track_shift,total_shift; |
count | 914 | kernel/blk_drv/floppy.c | for (count = 0; count < floppy->sect; count++) { |
count | 917 | kernel/blk_drv/floppy.c | *here++ = 1 + (( count + total_shift ) % floppy->sect); |
count | 126 | kernel/blk_drv/ll_rw_blk.c | unsigned int sector, count; |
count | 145 | kernel/blk_drv/ll_rw_blk.c | count = bh->b_size >> 9; |
count | 146 | kernel/blk_drv/ll_rw_blk.c | sector = bh->b_blocknr * count; |
count | 148 | kernel/blk_drv/ll_rw_blk.c | if (blk_size[major][MINOR(bh->b_dev)] < (sector + count)>>1) { |
count | 173 | kernel/blk_drv/ll_rw_blk.c | req->nr_sectors += count; |
count | 210 | kernel/blk_drv/ll_rw_blk.c | req->nr_sectors = count; |
count | 211 | kernel/blk_drv/ll_rw_blk.c | req->current_nr_sectors = count; |
count | 264 | kernel/blk_drv/scsi/fdomain.c | #define insw( buf, count, port ) \ |
count | 266 | kernel/blk_drv/scsi/fdomain.c | ( "cld;rep;insw"::"d" (port),"D" (buf),"c" (count):"cx","di" ) |
count | 268 | kernel/blk_drv/scsi/fdomain.c | #define outsw( buf, count, port ) \ |
count | 270 | kernel/blk_drv/scsi/fdomain.c | ("cld;rep;outsw"::"d" (port),"S" (buf),"c" (count):"cx","si") |
count | 123 | kernel/blk_drv/scsi/hosts.c | int i, count; |
count | 127 | kernel/blk_drv/scsi/hosts.c | for (count = i = 0; i < MAX_SCSI_HOSTS; ++i) |
count | 140 | kernel/blk_drv/scsi/hosts.c | count, scsi_hosts[i].name); |
count | 142 | kernel/blk_drv/scsi/hosts.c | ++count; |
count | 145 | kernel/blk_drv/scsi/hosts.c | printk ("scsi : %d hosts.\n", count); |
count | 482 | kernel/blk_drv/scsi/sd.c | int count, this_count_max; |
count | 486 | kernel/blk_drv/scsi/sd.c | count = 0; |
count | 487 | kernel/blk_drv/scsi/sd.c | while(bh && count < scsi_hosts[SCpnt->host].sg_tablesize) { |
count | 490 | kernel/blk_drv/scsi/sd.c | count++; |
count | 493 | kernel/blk_drv/scsi/sd.c | SCpnt->use_sg = count; /* Number of chains */ |
count | 494 | kernel/blk_drv/scsi/sd.c | count = 512;/* scsi_malloc can only allocate in chunks of 512 bytes*/ |
count | 495 | kernel/blk_drv/scsi/sd.c | while( count < (SCpnt->use_sg * sizeof(struct scatterlist))) |
count | 496 | kernel/blk_drv/scsi/sd.c | count = count << 1; |
count | 497 | kernel/blk_drv/scsi/sd.c | SCpnt->sglist_len = count; |
count | 498 | kernel/blk_drv/scsi/sd.c | sgpnt = (struct scatterlist * ) scsi_malloc(count); |
count | 506 | kernel/blk_drv/scsi/sd.c | count = 0; |
count | 508 | kernel/blk_drv/scsi/sd.c | for(count = 0, bh = SCpnt->request.bh; count < SCpnt->use_sg; |
count | 509 | kernel/blk_drv/scsi/sd.c | count++, bh = bh->b_reqnext) { |
count | 510 | kernel/blk_drv/scsi/sd.c | sgpnt[count].address = bh->b_data; |
count | 511 | kernel/blk_drv/scsi/sd.c | sgpnt[count].alt_address = NULL; |
count | 512 | kernel/blk_drv/scsi/sd.c | sgpnt[count].length = bh->b_size; |
count | 513 | kernel/blk_drv/scsi/sd.c | if (((int) sgpnt[count].address) + sgpnt[count].length > |
count | 515 | kernel/blk_drv/scsi/sd.c | sgpnt[count].alt_address = sgpnt[count].address; |
count | 520 | kernel/blk_drv/scsi/sd.c | sgpnt[count].address = NULL; |
count | 522 | kernel/blk_drv/scsi/sd.c | sgpnt[count].address = scsi_malloc(sgpnt[count].length); |
count | 528 | kernel/blk_drv/scsi/sd.c | if(sgpnt[count].address == NULL){ /* Out of dma memory */ |
count | 531 | kernel/blk_drv/scsi/sd.c | while(--count){ |
count | 532 | kernel/blk_drv/scsi/sd.c | if(sgpnt[count].alt_address) |
count | 533 | kernel/blk_drv/scsi/sd.c | scsi_free(sgpnt[count].address, sgpnt[count].length); |
count | 543 | kernel/blk_drv/scsi/sd.c | memcpy(sgpnt[count].address, sgpnt[count].alt_address, |
count | 544 | kernel/blk_drv/scsi/sd.c | sgpnt[count].length); |
count | 418 | kernel/blk_drv/scsi/sr.c | int count, this_count_max; |
count | 421 | kernel/blk_drv/scsi/sr.c | count = 0; |
count | 426 | kernel/blk_drv/scsi/sr.c | if(this_count) count++; |
count | 427 | kernel/blk_drv/scsi/sr.c | while(bh && count < scsi_hosts[SCpnt->host].sg_tablesize) { |
count | 430 | kernel/blk_drv/scsi/sr.c | count++; |
count | 436 | kernel/blk_drv/scsi/sr.c | if (count < scsi_hosts[SCpnt->host].sg_tablesize) { |
count | 437 | kernel/blk_drv/scsi/sr.c | count++; |
count | 441 | kernel/blk_drv/scsi/sr.c | count--; |
count | 445 | kernel/blk_drv/scsi/sr.c | SCpnt->use_sg = count; /* Number of chains */ |
count | 446 | kernel/blk_drv/scsi/sr.c | count = 512;/* scsi_malloc can only allocate in chunks of 512 bytes*/ |
count | 447 | kernel/blk_drv/scsi/sr.c | while( count < (SCpnt->use_sg * sizeof(struct scatterlist))) |
count | 448 | kernel/blk_drv/scsi/sr.c | count = count << 1; |
count | 449 | kernel/blk_drv/scsi/sr.c | SCpnt->sglist_len = count; |
count | 450 | kernel/blk_drv/scsi/sr.c | sgpnt = (struct scatterlist * ) scsi_malloc(count); |
count | 456 | kernel/blk_drv/scsi/sr.c | count = 0; |
count | 459 | kernel/blk_drv/scsi/sr.c | sgpnt[count].length = (SCpnt->request.sector % 4) << 9; |
count | 460 | kernel/blk_drv/scsi/sr.c | sgpnt[count].address = scsi_malloc(sgpnt[count].length); |
count | 461 | kernel/blk_drv/scsi/sr.c | if(!sgpnt[count].address) panic("SCSI DMA pool exhausted."); |
count | 462 | kernel/blk_drv/scsi/sr.c | sgpnt[count].alt_address = sgpnt[count].address; /* Flag to delete |
count | 464 | kernel/blk_drv/scsi/sr.c | count++; |
count | 466 | kernel/blk_drv/scsi/sr.c | for(bh = SCpnt->request.bh; count < SCpnt->use_sg; |
count | 467 | kernel/blk_drv/scsi/sr.c | count++, bh = bh->b_reqnext) { |
count | 469 | kernel/blk_drv/scsi/sr.c | sgpnt[count].address = bh->b_data; |
count | 470 | kernel/blk_drv/scsi/sr.c | sgpnt[count].length = bh->b_size; |
count | 471 | kernel/blk_drv/scsi/sr.c | sgpnt[count].alt_address = NULL; |
count | 473 | kernel/blk_drv/scsi/sr.c | sgpnt[count].address = scsi_malloc(end_rec); |
count | 474 | kernel/blk_drv/scsi/sr.c | if(!sgpnt[count].address) panic("SCSI DMA pool exhausted."); |
count | 475 | kernel/blk_drv/scsi/sr.c | sgpnt[count].length = end_rec; |
count | 476 | kernel/blk_drv/scsi/sr.c | sgpnt[count].alt_address = sgpnt[count].address; |
count | 477 | kernel/blk_drv/scsi/sr.c | if (count+1 != SCpnt->use_sg) panic("Bad sr request list"); |
count | 480 | kernel/blk_drv/scsi/sr.c | if (((int) sgpnt[count].address) + sgpnt[count].length > |
count | 482 | kernel/blk_drv/scsi/sr.c | sgpnt[count].alt_address = sgpnt[count].address; |
count | 486 | kernel/blk_drv/scsi/sr.c | if(dma_free_sectors < (sgpnt[count].length >> 9) + 5) { |
count | 487 | kernel/blk_drv/scsi/sr.c | sgpnt[count].address = NULL; |
count | 489 | kernel/blk_drv/scsi/sr.c | sgpnt[count].address = scsi_malloc(sgpnt[count].length); |
count | 495 | kernel/blk_drv/scsi/sr.c | if(sgpnt[count].address == NULL){ /* Out of dma memory */ |
count | 498 | kernel/blk_drv/scsi/sr.c | while(--count){ |
count | 499 | kernel/blk_drv/scsi/sr.c | if(sgpnt[count].alt_address) |
count | 500 | kernel/blk_drv/scsi/sr.c | scsi_free(sgpnt[count].address, sgpnt[count].length); |
count | 513 | kernel/blk_drv/scsi/sr.c | for(count=0; count<SCpnt->use_sg; count++) |
count | 514 | kernel/blk_drv/scsi/sr.c | printk("SGlist: %d %x %x %x\n", count, |
count | 515 | kernel/blk_drv/scsi/sr.c | sgpnt[count].address, |
count | 516 | kernel/blk_drv/scsi/sr.c | sgpnt[count].alt_address, |
count | 517 | kernel/blk_drv/scsi/sr.c | sgpnt[count].length); |
count | 546 | kernel/blk_drv/scsi/st.c | int st_write(struct inode * inode, struct file * filp, char * buf, int count) |
count | 591 | kernel/blk_drv/scsi/st.c | total = count; |
count | 600 | kernel/blk_drv/scsi/st.c | while((scsi_tapes[dev].buffer->buffer_bytes + count) >= |
count | 631 | kernel/blk_drv/scsi/st.c | if (count < total) |
count | 632 | kernel/blk_drv/scsi/st.c | return total - count; |
count | 638 | kernel/blk_drv/scsi/st.c | count -= do_count; |
count | 642 | kernel/blk_drv/scsi/st.c | if (count != 0) { |
count | 645 | kernel/blk_drv/scsi/st.c | scsi_tapes[dev].buffer->buffer_bytes,b_point,count); |
count | 646 | kernel/blk_drv/scsi/st.c | filp->f_pos += count; |
count | 647 | kernel/blk_drv/scsi/st.c | scsi_tapes[dev].buffer->buffer_bytes += count; |
count | 648 | kernel/blk_drv/scsi/st.c | count = 0; |
count | 685 | kernel/blk_drv/scsi/st.c | int st_read(struct inode * inode, struct file * filp, char * buf, int count) |
count | 721 | kernel/blk_drv/scsi/st.c | for (total = 0; total < count; ) { |
count | 816 | kernel/blk_drv/scsi/st.c | scsi_tapes[dev].buffer->buffer_bytes, count - total); |
count | 818 | kernel/blk_drv/scsi/st.c | transfer = scsi_tapes[dev].buffer->buffer_bytes < count - total ? |
count | 819 | kernel/blk_drv/scsi/st.c | scsi_tapes[dev].buffer->buffer_bytes : count - total; |
count | 169 | kernel/blk_drv/xd.c | u_int block,count,retry; |
count | 178 | kernel/blk_drv/xd.c | count = CURRENT->nr_sectors; |
count | 183 | kernel/blk_drv/xd.c | code = xd_readwrite(CURRENT->cmd,CURRENT_DEV,CURRENT->buffer,block,count); |
count | 265 | kernel/blk_drv/xd.c | static int xd_readwrite (u_char operation,u_char drive,u_char *buffer,u_int block,u_int count) |
count | 272 | kernel/blk_drv/xd.c | printk("xd_readwrite: operation = %s, drive = %d, buffer = 0x%X, block = %d, count = %d\n",operation == READ ? "read" : "write",drive,buffer,block,count); |
count | 276 | kernel/blk_drv/xd.c | while (count) { |
count | 277 | kernel/blk_drv/xd.c | temp = count < xd_maxsectors ? count : xd_maxsectors; |
count | 310 | kernel/blk_drv/xd.c | count -= temp, buffer += temp * 0x200, block += temp; |
count | 342 | kernel/blk_drv/xd.c | static u_char xd_setup_dma (u_char mode,u_char *buffer,u_int count) |
count | 344 | kernel/blk_drv/xd.c | if (buffer < ((u_char *) 0x1000000 - count)) { /* transfer to address < 16M? */ |
count | 345 | kernel/blk_drv/xd.c | if (((u_int) buffer & 0xFFFF0000) != ((u_int) buffer + count) & 0xFFFF0000) { |
count | 355 | kernel/blk_drv/xd.c | set_dma_count(xd_dma,count); |
count | 366 | kernel/blk_drv/xd.c | static u_char *xd_build (u_char *cmdblk,u_char command,u_char drive,u_char head,u_short cylinder,u_char sector,u_char count,u_char control) |
count | 372 | kernel/blk_drv/xd.c | cmdblk[4] = count; |
count | 452 | kernel/blk_drv/xd.c | u_char cmdblk[6],i,count = 0; |
count | 457 | kernel/blk_drv/xd.c | init_drive(count); |
count | 458 | kernel/blk_drv/xd.c | count++; |
count | 461 | kernel/blk_drv/xd.c | return (count); |
count | 108 | kernel/chr_drv/atixlmouse.c | static int write_mouse(struct inode * inode, struct file * file, char * buffer, int count) |
count | 113 | kernel/chr_drv/atixlmouse.c | static int read_mouse(struct inode * inode, struct file * file, char * buffer, int count) |
count | 115 | kernel/chr_drv/atixlmouse.c | if (count < 3) |
count | 89 | kernel/chr_drv/busmouse.c | static int write_mouse(struct inode * inode, struct file * file, char * buffer, int count) |
count | 94 | kernel/chr_drv/busmouse.c | static int read_mouse(struct inode * inode, struct file * file, char * buffer, int count) |
count | 98 | kernel/chr_drv/busmouse.c | if (count < 3) |
count | 114 | kernel/chr_drv/busmouse.c | for (i = 3; i < count; i++) |
count | 424 | kernel/chr_drv/console.c | unsigned long count; |
count | 429 | kernel/chr_drv/console.c | count = (scr_end-pos)>>1; |
count | 433 | kernel/chr_drv/console.c | count = ((pos-origin)>>1)+1; |
count | 437 | kernel/chr_drv/console.c | count = video_num_columns * video_num_lines; |
count | 446 | kernel/chr_drv/console.c | ::"c" (count), |
count | 454 | kernel/chr_drv/console.c | long count; |
count | 459 | kernel/chr_drv/console.c | count = video_num_columns-x; |
count | 464 | kernel/chr_drv/console.c | count = x+1; |
count | 468 | kernel/chr_drv/console.c | count = video_num_columns; |
count | 476 | kernel/chr_drv/console.c | ::"c" (count), |
count | 1221 | kernel/chr_drv/console.c | void * memsetw(void * s,unsigned short c,int count) |
count | 1226 | kernel/chr_drv/console.c | ::"a" (c),"D" (s),"c" (count) |
count | 47 | kernel/chr_drv/lp.c | unsigned long count = 0; |
count | 52 | kernel/chr_drv/lp.c | count ++; |
count | 55 | kernel/chr_drv/lp.c | } while(!(status & LP_PBUSY) && count < LP_CHAR(minor)); |
count | 57 | kernel/chr_drv/lp.c | if (count == LP_CHAR(minor)) { |
count | 62 | kernel/chr_drv/lp.c | if (count > lp_max_count) { |
count | 63 | kernel/chr_drv/lp.c | printk("lp success after %d counts.\n",count); |
count | 64 | kernel/chr_drv/lp.c | lp_max_count=count; |
count | 122 | kernel/chr_drv/lp.c | static int lp_write_interrupt(struct inode * inode, struct file * file, char * buf, int count) |
count | 133 | kernel/chr_drv/lp.c | copy_size = (count <= LP_BUFFER_SIZE ? count : LP_BUFFER_SIZE); |
count | 182 | kernel/chr_drv/lp.c | count -= bytes_written; |
count | 184 | kernel/chr_drv/lp.c | } while (count > 0); |
count | 190 | kernel/chr_drv/lp.c | char * buf, int count) |
count | 205 | kernel/chr_drv/lp.c | while (count > 0) { |
count | 209 | kernel/chr_drv/lp.c | if (retval) { count--; temp++; |
count | 263 | kernel/chr_drv/lp.c | static int lp_write(struct inode * inode, struct file * file, char * buf, int count) |
count | 266 | kernel/chr_drv/lp.c | return lp_write_interrupt(inode, file, buf, count); |
count | 268 | kernel/chr_drv/lp.c | return lp_write_polled(inode, file, buf, count); |
count | 429 | kernel/chr_drv/lp.c | int count = 0; |
count | 450 | kernel/chr_drv/lp.c | count++; |
count | 453 | kernel/chr_drv/lp.c | if (count == 0) |
count | 22 | kernel/chr_drv/mem.c | static int read_ram(struct inode * inode, struct file * file,char * buf, int count) |
count | 27 | kernel/chr_drv/mem.c | static int write_ram(struct inode * inode, struct file * file,char * buf, int count) |
count | 32 | kernel/chr_drv/mem.c | static int read_core(struct inode * inode, struct file * file,char * buf, int count) |
count | 44 | kernel/chr_drv/mem.c | if (count < 0) |
count | 48 | kernel/chr_drv/mem.c | if (count > high_memory - p) |
count | 49 | kernel/chr_drv/mem.c | count = high_memory - p; |
count | 52 | kernel/chr_drv/mem.c | if (p < sizeof(struct user) && count > 0) { |
count | 53 | kernel/chr_drv/mem.c | count1 = count; |
count | 60 | kernel/chr_drv/mem.c | count -= count1; |
count | 64 | kernel/chr_drv/mem.c | while (p < (4096 + 4096) && count > 0) { |
count | 68 | kernel/chr_drv/mem.c | count--; |
count | 71 | kernel/chr_drv/mem.c | memcpy_tofs(buf,(void *) (p - 4096),count); |
count | 72 | kernel/chr_drv/mem.c | read += count; |
count | 77 | kernel/chr_drv/mem.c | static int read_mem(struct inode * inode, struct file * file,char * buf, int count) |
count | 82 | kernel/chr_drv/mem.c | if (count < 0) |
count | 86 | kernel/chr_drv/mem.c | if (count > high_memory - p) |
count | 87 | kernel/chr_drv/mem.c | count = high_memory - p; |
count | 89 | kernel/chr_drv/mem.c | while (p < 4096 && count > 0) { |
count | 93 | kernel/chr_drv/mem.c | count--; |
count | 96 | kernel/chr_drv/mem.c | memcpy_tofs(buf,(void *) p,count); |
count | 97 | kernel/chr_drv/mem.c | read += count; |
count | 102 | kernel/chr_drv/mem.c | static int write_mem(struct inode * inode, struct file * file,char * buf, int count) |
count | 107 | kernel/chr_drv/mem.c | if (count < 0) |
count | 111 | kernel/chr_drv/mem.c | if (count > high_memory - p) |
count | 112 | kernel/chr_drv/mem.c | count = high_memory - p; |
count | 114 | kernel/chr_drv/mem.c | while (p < 4096 && count > 0) { |
count | 118 | kernel/chr_drv/mem.c | count--; |
count | 121 | kernel/chr_drv/mem.c | memcpy_fromfs((void *) p,buf,count); |
count | 122 | kernel/chr_drv/mem.c | written += count; |
count | 124 | kernel/chr_drv/mem.c | return count; |
count | 139 | kernel/chr_drv/mem.c | static int read_port(struct inode * inode,struct file * file,char * buf, int count) |
count | 144 | kernel/chr_drv/mem.c | while (count-- > 0 && i < 65536) { |
count | 153 | kernel/chr_drv/mem.c | static int write_port(struct inode * inode,struct file * file,char * buf, int count) |
count | 158 | kernel/chr_drv/mem.c | while (count-- > 0 && i < 65536) { |
count | 167 | kernel/chr_drv/mem.c | static int read_null(struct inode * node,struct file * file,char * buf,int count) |
count | 172 | kernel/chr_drv/mem.c | static int write_null(struct inode * inode,struct file * file,char * buf, int count) |
count | 174 | kernel/chr_drv/mem.c | return count; |
count | 177 | kernel/chr_drv/mem.c | static int read_zero(struct inode * node,struct file * file,char * buf,int count) |
count | 181 | kernel/chr_drv/mem.c | for (left = count; left > 0; left--) { |
count | 185 | kernel/chr_drv/mem.c | return count; |
count | 188 | kernel/chr_drv/mem.c | static int write_zero(struct inode * inode,struct file * file,char * buf, int count) |
count | 190 | kernel/chr_drv/mem.c | return count; |
count | 95 | kernel/chr_drv/msbusmouse.c | static int write_mouse(struct inode * inode, struct file * file, char * buffer, int count) |
count | 100 | kernel/chr_drv/msbusmouse.c | static int read_mouse(struct inode * inode, struct file * file, char * buffer, int count) |
count | 104 | kernel/chr_drv/msbusmouse.c | if (count < 3) |
count | 119 | kernel/chr_drv/msbusmouse.c | for (i = 3; i < count; i++) |
count | 201 | kernel/chr_drv/psaux.c | static int write_aux(struct inode * inode, struct file * file, char * buffer, int count) |
count | 203 | kernel/chr_drv/psaux.c | int i = count; |
count | 214 | kernel/chr_drv/psaux.c | return count; |
count | 222 | kernel/chr_drv/psaux.c | static int read_aux(struct inode * inode, struct file * file, char * buffer, int count) |
count | 225 | kernel/chr_drv/psaux.c | int i = count; |
count | 247 | kernel/chr_drv/psaux.c | if (count-i) { |
count | 249 | kernel/chr_drv/psaux.c | return count-i; |
count | 26 | kernel/chr_drv/pty.c | if (!tty || (tty->count > 1)) |
count | 83 | kernel/chr_drv/pty.c | while (!tty->link->count && !(current->signal & ~current->blocked)) |
count | 85 | kernel/chr_drv/pty.c | if (!tty->link->count) |
count | 248 | kernel/chr_drv/serial.c | int head, tail, count; |
count | 255 | kernel/chr_drv/serial.c | count = info->xmit_fifo_size; |
count | 259 | kernel/chr_drv/serial.c | count--; |
count | 261 | kernel/chr_drv/serial.c | while (count-- && (tail != head)) { |
count | 690 | kernel/chr_drv/serial.c | int head, tail, count; |
count | 700 | kernel/chr_drv/serial.c | count = info->xmit_fifo_size; |
count | 701 | kernel/chr_drv/serial.c | while (count--) { |
count | 1080 | kernel/chr_drv/serial.c | printk("rs_close ttys%d, count = %d\n", info->line, info->count); |
count | 1082 | kernel/chr_drv/serial.c | if (--info->count > 0) |
count | 1088 | kernel/chr_drv/serial.c | info->count = 0; |
count | 1162 | kernel/chr_drv/serial.c | info->line, info->count); |
count | 1164 | kernel/chr_drv/serial.c | info->count--; |
count | 1187 | kernel/chr_drv/serial.c | info->line, info->count); |
count | 1193 | kernel/chr_drv/serial.c | info->count++; |
count | 1197 | kernel/chr_drv/serial.c | info->line, info->count); |
count | 1222 | kernel/chr_drv/serial.c | printk("rs_open ttys%d, count = %d\n", info->line, info->count); |
count | 1224 | kernel/chr_drv/serial.c | info->count++; |
count | 1542 | kernel/chr_drv/serial.c | info->count = 0; |
count | 169 | kernel/chr_drv/tty_io.c | static int hung_up_tty_read(struct inode * inode, struct file * file, char * buf, int count) |
count | 174 | kernel/chr_drv/tty_io.c | static int hung_up_tty_write(struct inode * inode, struct file * file, char * buf, int count) |
count | 790 | kernel/chr_drv/tty_io.c | if (tty->link && !tty->link->count) |
count | 848 | kernel/chr_drv/tty_io.c | if (tty->link->count) |
count | 874 | kernel/chr_drv/tty_io.c | if (tty->link && !tty->link->count) { |
count | 913 | kernel/chr_drv/tty_io.c | if (tty->link && !tty->link->count) |
count | 920 | kernel/chr_drv/tty_io.c | static int tty_read(struct inode * inode, struct file * file, char * buf, int count) |
count | 945 | kernel/chr_drv/tty_io.c | i = (ldiscs[tty->disc].read)(tty,file,buf,count); |
count | 953 | kernel/chr_drv/tty_io.c | static int tty_write(struct inode * inode, struct file * file, char * buf, int count) |
count | 981 | kernel/chr_drv/tty_io.c | i = (ldiscs[tty->disc].write)(tty,file,buf,count); |
count | 1006 | kernel/chr_drv/tty_io.c | if (IS_A_PTY_MASTER(dev) && tty_table[dev] && tty_table[dev]->count) |
count | 1062 | kernel/chr_drv/tty_io.c | tty_table[dev]->count++; |
count | 1064 | kernel/chr_drv/tty_io.c | tty_table[o_dev]->count++; |
count | 1121 | kernel/chr_drv/tty_io.c | if (--tty->link->count < 0) { |
count | 1123 | kernel/chr_drv/tty_io.c | dev, tty->count); |
count | 1124 | kernel/chr_drv/tty_io.c | tty->link->count = 0; |
count | 1127 | kernel/chr_drv/tty_io.c | if (--tty->count < 0) { |
count | 1129 | kernel/chr_drv/tty_io.c | dev, tty->count); |
count | 1130 | kernel/chr_drv/tty_io.c | tty->count = 0; |
count | 1132 | kernel/chr_drv/tty_io.c | if (tty->count) |
count | 1148 | kernel/chr_drv/tty_io.c | if (o_tty->count) |
count | 1292 | kernel/chr_drv/tty_io.c | if (tty->link && !tty->link->count) |
count | 1308 | kernel/chr_drv/tty_io.c | if (tty->link && !tty->link->count) |
count | 1374 | kernel/chr_drv/tty_io.c | int head, tail, count; |
count | 1388 | kernel/chr_drv/tty_io.c | count = buflen; |
count | 1391 | kernel/chr_drv/tty_io.c | while (count && VLEFT > 0) { |
count | 1396 | kernel/chr_drv/tty_io.c | if (count) { |
count | 1397 | kernel/chr_drv/tty_io.c | tty->write_data_cnt = count; |
count | 1403 | kernel/chr_drv/tty_io.c | return count; |
count | 1417 | kernel/chr_drv/tty_io.c | int head, tail, count; |
count | 1434 | kernel/chr_drv/tty_io.c | count = tty->write_data_cnt; |
count | 1437 | kernel/chr_drv/tty_io.c | while (count && VLEFT > 0) { |
count | 1443 | kernel/chr_drv/tty_io.c | tty->write_data_cnt = count; |
count | 1445 | kernel/chr_drv/tty_io.c | if (!count) |
count | 74 | kernel/chr_drv/vt.c | kd_mksound(unsigned int count, unsigned int ticks) |
count | 76 | kernel/chr_drv/vt.c | if (count) |
count | 83 | kernel/chr_drv/vt.c | outb_p(count & 0xff, 0x42); |
count | 84 | kernel/chr_drv/vt.c | outb((count >> 8) & 0xff, 0x42); |
count | 310 | kernel/chr_drv/vt.c | if (tty_table[i] && tty_table[i]->count > 0) |
count | 324 | kernel/chr_drv/vt.c | if (!tty_table[i] || tty_table[i]->count == 0) |
count | 259 | kernel/exit.c | int err, retval = 0, count = 0; |
count | 266 | kernel/exit.c | ++count; |
count | 270 | kernel/exit.c | return(count ? retval : -ESRCH); |
count | 50 | kernel/printk.c | unsigned long i, j, count; |
count | 94 | kernel/printk.c | count = len; |
count | 95 | kernel/printk.c | if (count > 4096) |
count | 96 | kernel/printk.c | count = 4096; |
count | 97 | kernel/printk.c | if (count > logged_chars) |
count | 98 | kernel/printk.c | count = logged_chars; |
count | 99 | kernel/printk.c | j = log_start + log_size - count; |
count | 100 | kernel/printk.c | for (i = 0; i < count; i++) { |
count | 375 | kernel/sched.c | static int count = LOAD_FREQ; |
count | 377 | kernel/sched.c | if (count-- > 0) |
count | 379 | kernel/sched.c | count = LOAD_FREQ; |
count | 708 | kernel/sys.c | long count; |
count | 715 | kernel/sys.c | count = inb_p(0x40); /* read the latched count */ |
count | 716 | kernel/sys.c | count |= inb_p(0x40) << 8; |
count | 718 | kernel/sys.c | if (count < (LATCH - LATCH/100)) |
count | 731 | kernel/sys.c | + ((LATCH - 1) - count)*(1000000/HZ)/LATCH; |
count | 11 | lib/write.c | _syscall3(int,write,int,fd,const char *,buf,off_t,count) |
count | 55 | net/socket.c | struct dirent *dirent, int count); |
count | 276 | net/socket.c | int count) |
count | 521 | net/tcp/ip.c | static int count = 0; |
count | 579 | net/tcp/ip.c | iph->id = net16(count++); |
count | 259 | net/tcp/tcp.c | int count=0; |
count | 272 | net/tcp/tcp.c | count ++; |
count | 273 | net/tcp/tcp.c | if (count > 20) |
count | 206 | net/tcp/we.c | len = ring->count-4; |
count | 209 | net/tcp/we.c | ring->count); |
count | 388 | net/tcp/we.c | bnd, pkt, cur, ring->status, ring->count, |
count | 411 | net/tcp/we.c | ring->count, ring->status, bnd, pkt, |
count | 525 | net/tcp/we.c | int count = 0; |
count | 620 | net/tcp/we.c | if( ++count > max_pages + 1 ){ |
count | 621 | net/tcp/we.c | printk("\nwd8013_interrupt - infinite loop detected, isr = x%x, count = %d", isr, count ); |
count | 52 | net/tcp/wereg.h | unsigned short count; /*packet lenght in bytes + 4 */ |