tag | line | file | source code |
size | 21 | fs/block_dev.c | int size; |
size | 28 | fs/block_dev.c | size = blk_size[MAJOR(dev)][MINOR(dev)]; |
size | 30 | fs/block_dev.c | size = 0x7fffffff; |
size | 32 | fs/block_dev.c | if (block >= size) |
size | 64 | fs/block_dev.c | unsigned int size; |
size | 72 | fs/block_dev.c | size = blk_size[MAJOR(dev)][MINOR(dev)]; |
size | 74 | fs/block_dev.c | size = 0x7fffffff; |
size | 76 | fs/block_dev.c | if (block >= size) |
size | 217 | fs/buffer.c | static struct buffer_head * find_buffer(int dev, int block, int size) |
size | 223 | fs/buffer.c | if (tmp->b_size == size) |
size | 239 | fs/buffer.c | struct buffer_head * get_hash_table(int dev, int block, int size) |
size | 244 | fs/buffer.c | if (!(bh=find_buffer(dev,block,size))) |
size | 248 | fs/buffer.c | if (bh->b_dev == dev && bh->b_blocknr == block && bh->b_size == size) { |
size | 267 | fs/buffer.c | struct buffer_head * getblk(int dev, int block, int size) |
size | 273 | fs/buffer.c | if (bh = get_hash_table(dev, block, size)) |
size | 277 | fs/buffer.c | grow_buffers(size); |
size | 283 | fs/buffer.c | if (tmp->b_count || tmp->b_size != size) |
size | 297 | fs/buffer.c | grow_buffers(size); |
size | 307 | fs/buffer.c | if (bh->b_count || bh->b_size != size) |
size | 315 | fs/buffer.c | if (find_buffer(dev,block,size)) |
size | 343 | fs/buffer.c | struct buffer_head * bread(int dev, int block, int size) |
size | 347 | fs/buffer.c | if (!(bh = getblk(dev, block, size))) { |
size | 474 | fs/buffer.c | void grow_buffers(int size) |
size | 480 | fs/buffer.c | if ((size & 511) || (size > 4096)) { |
size | 481 | fs/buffer.c | printk("grow_buffers: size = %d\n",size); |
size | 489 | fs/buffer.c | for (i = 0 ; i+size <= 4096 ; i += size) { |
size | 496 | fs/buffer.c | bh->b_size = size; |
size | 497 | fs/buffer.c | i += size; |
size | 80 | fs/msdos/file.c | int left,offset,size,sector,cnt; |
size | 101 | fs/msdos/file.c | filp->f_pos += (size = MIN(SECTOR_SIZE-offset,left)); |
size | 103 | fs/msdos/file.c | memcpy_tofs(buf,data+offset,size); |
size | 104 | fs/msdos/file.c | buf += size; |
size | 106 | fs/msdos/file.c | else for (cnt = size; cnt; cnt--) { |
size | 108 | fs/msdos/file.c | size--; |
size | 128 | fs/msdos/file.c | int sector,offset,size,left,written; |
size | 149 | fs/msdos/file.c | for (start = buf; count || carry; count -= size) { |
size | 154 | fs/msdos/file.c | size = MIN(SECTOR_SIZE-offset,MAX(carry,count)); |
size | 161 | fs/msdos/file.c | buf,written = size); |
size | 162 | fs/msdos/file.c | buf += size; |
size | 172 | fs/msdos/file.c | for (size = 0; size < count && left; size++) { |
size | 240 | fs/msdos/inode.c | inode->i_size = raw_entry->size; |
size | 265 | fs/msdos/inode.c | raw_entry->size = 0; |
size | 269 | fs/msdos/inode.c | raw_entry->size = inode->i_size; |
size | 172 | fs/msdos/namei.c | de->size = 0; |
size | 18 | fs/pipe.c | int chars, size, read = 0; |
size | 29 | fs/pipe.c | while (count>0 && (size = PIPE_SIZE(*inode))) { |
size | 33 | fs/pipe.c | if (chars > size) |
size | 34 | fs/pipe.c | chars = size; |
size | 48 | fs/pipe.c | int chars, size, written = 0; |
size | 56 | fs/pipe.c | size = PAGE_SIZE-count; |
size | 58 | fs/pipe.c | size = PAGE_SIZE-1; |
size | 60 | fs/pipe.c | while (PIPE_SIZE(*inode) >= size) { |
size | 72 | fs/pipe.c | while (count>0 && (size = (PAGE_SIZE-1)-PIPE_SIZE(*inode))) { |
size | 76 | fs/pipe.c | if (chars > size) |
size | 77 | fs/pipe.c | chars = size; |
size | 86 | fs/pipe.c | size = PAGE_SIZE-1; |
size | 24 | include/linux/fd.h | unsigned int size, /* nr of 512-byte sectors total */ |
size | 227 | include/linux/fs.h | extern void grow_buffers(int size); |
size | 255 | include/linux/fs.h | extern struct buffer_head * get_hash_table(int dev, int block, int size); |
size | 256 | include/linux/fs.h | extern struct buffer_head * getblk(int dev, int block, int size); |
size | 261 | include/linux/fs.h | extern struct buffer_head * bread(int dev, int block, int size); |
size | 12 | include/linux/kernel.h | void * malloc(unsigned int size); |
size | 13 | include/linux/kernel.h | void free_s(void * obj, int size); |
size | 63 | include/linux/mm.h | extern int free_page_tables(unsigned long from,unsigned long size); |
size | 64 | include/linux/mm.h | extern int copy_page_tables(unsigned long from,unsigned long to,long size); |
size | 65 | include/linux/mm.h | extern int unmap_page_range(unsigned long from, unsigned long size); |
size | 66 | include/linux/mm.h | extern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, |
size | 74 | include/linux/msdos_fs.h | unsigned long size; /* file size (in bytes) */ |
size | 564 | kernel/blk_drv/floppy.c | floppy_sizes[drive] = floppy->size >> 1; |
size | 940 | kernel/blk_drv/floppy.c | if (block+2 > floppy->size) { |
size | 1072 | kernel/blk_drv/floppy.c | floppy_sizes[drive] = user_params[drive].size >> 1; |
size | 478 | kernel/blk_drv/scsi/fdomain.c | unsigned long blocks, size, capacity; |
size | 482 | kernel/blk_drv/scsi/fdomain.c | size = (buf[4] << 24) | (buf[5] << 16) | (buf[6] << 8) | buf[7]; |
size | 483 | kernel/blk_drv/scsi/fdomain.c | capacity = +(blocks * size * 10) / +(1024L * 1024L); |
size | 486 | kernel/blk_drv/scsi/fdomain.c | ((capacity + 5L) / 10L), size ); |
size | 27 | kernel/fork.c | void verify_area(void * addr,int size) |
size | 32 | kernel/fork.c | size += start & 0xfff; |
size | 35 | kernel/fork.c | while (size>0) { |
size | 36 | kernel/fork.c | size -= 4096; |
size | 41 | kernel/vsprintf.c | static char * number(char * str, int num, int base, int size, int precision |
size | 58 | kernel/vsprintf.c | if (sign) size--; |
size | 60 | kernel/vsprintf.c | if (base==16) size -= 2; |
size | 61 | kernel/vsprintf.c | else if (base==8) size--; |
size | 68 | kernel/vsprintf.c | size -= precision; |
size | 70 | kernel/vsprintf.c | while(size-->0) |
size | 82 | kernel/vsprintf.c | while(size-->0) |
size | 88 | kernel/vsprintf.c | while(size-->0) |
size | 61 | lib/malloc.c | int size; |
size | 127 | lib/malloc.c | for (bdir = bucket_dir; bdir->size; bdir++) |
size | 128 | lib/malloc.c | if (bdir->size >= len) |
size | 130 | lib/malloc.c | if (!bdir->size) { |
size | 155 | lib/malloc.c | bdesc->bucket_size = bdir->size; |
size | 160 | lib/malloc.c | for (i=PAGE_SIZE/bdir->size; i > 1; i--) { |
size | 161 | lib/malloc.c | *((char **) cp) = cp + bdir->size; |
size | 162 | lib/malloc.c | cp += bdir->size; |
size | 182 | lib/malloc.c | void free_s(void *obj, int size) |
size | 191 | lib/malloc.c | for (bdir = bucket_dir; bdir->size; bdir++) { |
size | 194 | lib/malloc.c | if (bdir->size < size) |
size | 90 | mm/memory.c | int free_page_tables(unsigned long from,unsigned long size) |
size | 101 | mm/memory.c | size = (size + 0x3fffff) >> 22; |
size | 103 | mm/memory.c | for ( ; size-->0 ; dir++) { |
size | 144 | mm/memory.c | int copy_page_tables(unsigned long from,unsigned long to,long size) |
size | 157 | mm/memory.c | size = ((unsigned) (size+0x3fffff)) >> 22; |
size | 158 | mm/memory.c | for( ; size-->0 ; from_dir++,to_dir++) { |
size | 212 | mm/memory.c | int unmap_page_range(unsigned long from, unsigned long size) |
size | 222 | mm/memory.c | size = (size + 0xfff) >> 12; |
size | 225 | mm/memory.c | if ((pcnt = 1024 - poff) > size) |
size | 226 | mm/memory.c | pcnt = size; |
size | 228 | mm/memory.c | for ( ; size > 0; ++dir, size -= pcnt, |
size | 229 | mm/memory.c | pcnt = (size > 1024 ? 1024 : size)) { |
size | 276 | mm/memory.c | int remap_page_range(unsigned long from, unsigned long to, unsigned long size, |
size | 286 | mm/memory.c | size = (size + 0xfff) >> 12; |
size | 288 | mm/memory.c | if ((pcnt = 1024 - poff) > size) |
size | 289 | mm/memory.c | pcnt = size; |
size | 291 | mm/memory.c | while (size > 0) { |
size | 306 | mm/memory.c | for (size -= pcnt; pcnt-- ;) { |
size | 352 | mm/memory.c | pcnt = (size > 1024 ? 1024 : size); |
size | 53 | net/kern_sock.h | int (*read)(struct socket *sock, char *ubuf, int size, int nonblock); |
size | 54 | net/kern_sock.h | int (*write)(struct socket *sock, char *ubuf, int size, int nonblock); |
size | 43 | net/socket.c | int size); |
size | 45 | net/socket.c | int size); |
size | 232 | net/socket.c | sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
size | 236 | net/socket.c | PRINTK("sock_read: buf=0x%x, size=%d\n", ubuf, size); |
size | 243 | net/socket.c | return sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)); |
size | 247 | net/socket.c | sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
size | 251 | net/socket.c | PRINTK("sock_write: buf=0x%x, size=%d\n", ubuf, size); |
size | 258 | net/socket.c | return sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)); |
size | 54 | net/unix.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
size | 56 | net/unix.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
size | 387 | net/unix.c | unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
size | 392 | net/unix.c | if ((todo = size) <= 0) |
size | 442 | net/unix.c | return size - todo; |
size | 451 | net/unix.c | unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
size | 456 | net/unix.c | if ((todo = size) <= 0) |
size | 520 | net/unix.c | return size - todo; |