tag | line | file | source code |
pos | 195 | fs/ext/file.c | off_t pos; |
pos | 213 | fs/ext/file.c | pos = inode->i_size; |
pos | 215 | fs/ext/file.c | pos = filp->f_pos; |
pos | 218 | fs/ext/file.c | bh = ext_getblk(inode,pos/BLOCK_SIZE,1); |
pos | 224 | fs/ext/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
pos | 237 | fs/ext/file.c | p = (pos % BLOCK_SIZE) + bh->b_data; |
pos | 238 | fs/ext/file.c | pos += c; |
pos | 239 | fs/ext/file.c | if (pos > inode->i_size) { |
pos | 240 | fs/ext/file.c | inode->i_size = pos; |
pos | 252 | fs/ext/file.c | filp->f_pos = pos; |
pos | 201 | fs/ext2/file.c | off_t pos; |
pos | 222 | fs/ext2/file.c | pos = inode->i_size; |
pos | 224 | fs/ext2/file.c | pos = filp->f_pos; |
pos | 227 | fs/ext2/file.c | bh = ext2_getblk (inode, pos / sb->s_blocksize, 1, &err); |
pos | 236 | fs/ext2/file.c | c = sb->s_blocksize - (pos % sb->s_blocksize); |
pos | 249 | fs/ext2/file.c | p = (pos % sb->s_blocksize) + bh->b_data; |
pos | 250 | fs/ext2/file.c | pos += c; |
pos | 251 | fs/ext2/file.c | if (pos > inode->i_size) { |
pos | 252 | fs/ext2/file.c | inode->i_size = pos; |
pos | 264 | fs/ext2/file.c | filp->f_pos = pos; |
pos | 189 | fs/minix/file.c | off_t pos; |
pos | 207 | fs/minix/file.c | pos = inode->i_size; |
pos | 209 | fs/minix/file.c | pos = filp->f_pos; |
pos | 212 | fs/minix/file.c | bh = minix_getblk(inode,pos/BLOCK_SIZE,1); |
pos | 218 | fs/minix/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
pos | 231 | fs/minix/file.c | p = (pos % BLOCK_SIZE) + bh->b_data; |
pos | 232 | fs/minix/file.c | pos += c; |
pos | 233 | fs/minix/file.c | if (pos > inode->i_size) { |
pos | 234 | fs/minix/file.c | inode->i_size = pos; |
pos | 245 | fs/minix/file.c | filp->f_pos = pos; |
pos | 267 | fs/msdos/misc.c | int msdos_get_entry(struct inode *dir,int *pos,struct buffer_head **bh, |
pos | 274 | fs/msdos/misc.c | offset = *pos; |
pos | 279 | fs/msdos/misc.c | *pos += sizeof(struct msdos_dir_entry); |
pos | 298 | fs/msdos/namei.c | int pos; |
pos | 305 | fs/msdos/namei.c | pos = 0; |
pos | 307 | fs/msdos/namei.c | while (msdos_get_entry(dir,&pos,&bh,&de) > -1) |
pos | 62 | fs/nfs/file.c | off_t pos; |
pos | 73 | fs/nfs/file.c | pos = file->f_pos; |
pos | 75 | fs/nfs/file.c | count = inode->i_size - pos; |
pos | 85 | fs/nfs/file.c | pos, hunk, data, &fattr); |
pos | 91 | fs/nfs/file.c | pos += result; |
pos | 98 | fs/nfs/file.c | file->f_pos = pos; |
pos | 113 | fs/nfs/file.c | int pos; |
pos | 126 | fs/nfs/file.c | pos = file->f_pos; |
pos | 128 | fs/nfs/file.c | pos = inode->i_size; |
pos | 137 | fs/nfs/file.c | pos, hunk, data, &fattr); |
pos | 142 | fs/nfs/file.c | pos += hunk; |
pos | 149 | fs/nfs/file.c | file->f_pos = pos; |
pos | 82 | fs/xiafs/bitmap.c | static void que(struct buffer_head * bmap[], int bznr[], int pos) |
pos | 88 | fs/xiafs/bitmap.c | tbh=bmap[pos]; |
pos | 89 | fs/xiafs/bitmap.c | tmp=bznr[pos]; |
pos | 90 | fs/xiafs/bitmap.c | for (i=pos; i > 0; i--) { |
pos | 181 | fs/xiafs/bitmap.c | u_long pos, start_bit, end_bit, total_bits; |
pos | 187 | fs/xiafs/bitmap.c | pos=prev_bit+1; |
pos | 191 | fs/xiafs/bitmap.c | if (pos >= total_bits) |
pos | 192 | fs/xiafs/bitmap.c | pos=0; |
pos | 195 | fs/xiafs/bitmap.c | start_bit= pos & (end_bit-1); |
pos | 198 | fs/xiafs/bitmap.c | if ( pos < prev_bit && pos+end_bit >= prev_bit) { /* last time */ |
pos | 203 | fs/xiafs/bitmap.c | bmap_zones, slots, pos, &z_nr); |
pos | 210 | fs/xiafs/bitmap.c | pos=(pos & ~(end_bit-1))+end_bit; |
pos | 218 | fs/xiafs/bitmap.c | return (pos & ~(XIAFS_BITS_PER_Z(sb)-1))+tmp; |
pos | 188 | fs/xiafs/file.c | off_t pos; |
pos | 206 | fs/xiafs/file.c | pos = inode->i_size; |
pos | 208 | fs/xiafs/file.c | pos = filp->f_pos; |
pos | 211 | fs/xiafs/file.c | bh = xiafs_getblk(inode, pos >> XIAFS_ZSIZE_BITS(inode->i_sb), 1); |
pos | 217 | fs/xiafs/file.c | c = XIAFS_ZSIZE(inode->i_sb) - (pos & (XIAFS_ZSIZE(inode->i_sb) - 1)); |
pos | 230 | fs/xiafs/file.c | cp = (pos & (XIAFS_ZSIZE(inode->i_sb)-1)) + bh->b_data; |
pos | 231 | fs/xiafs/file.c | pos += c; |
pos | 232 | fs/xiafs/file.c | if (pos > inode->i_size) { |
pos | 233 | fs/xiafs/file.c | inode->i_size = pos; |
pos | 244 | fs/xiafs/file.c | filp->f_pos = pos; |
pos | 60 | fs/xiafs/namei.c | int i, zones, pos; |
pos | 86 | fs/xiafs/namei.c | pos = 0; |
pos | 87 | fs/xiafs/namei.c | while ( pos < XIAFS_ZSIZE(inode->i_sb) ) { |
pos | 102 | fs/xiafs/namei.c | pos += dep->d_rec_len; |
pos | 104 | fs/xiafs/namei.c | dep=(struct xiafs_direct *)(bh->b_data + pos); |
pos | 107 | fs/xiafs/namei.c | if (pos > XIAFS_ZSIZE(inode->i_sb)) { |
pos | 157 | fs/xiafs/namei.c | int i, pos, offset; |
pos | 169 | fs/xiafs/namei.c | pos=0; |
pos | 171 | fs/xiafs/namei.c | bh = xiafs_bread(dir, pos >> XIAFS_ZSIZE_BITS(dir->i_sb), pos ? 1:0); |
pos | 175 | fs/xiafs/namei.c | if (!pos) { |
pos | 187 | fs/xiafs/namei.c | if (pos >= dir->i_size) { |
pos | 235 | fs/xiafs/namei.c | pos+=XIAFS_ZSIZE(dir->i_sb); |
pos | 136 | include/linux/msdos_fs.h | extern int msdos_get_entry(struct inode *dir,int *pos,struct buffer_head **bh, |
pos | 341 | kernel/FPU-emu/reg_ld_str.c | int pos; |
pos | 345 | kernel/FPU-emu/reg_ld_str.c | for ( pos = 8; pos >= 0; pos--) |
pos | 349 | kernel/FPU-emu/reg_ld_str.c | bcd = (unsigned char)get_fs_byte((unsigned char *) s+pos); |
pos | 284 | kernel/chr_drv/console.c | pos = origin + y*video_size_row + (x<<1); |
pos | 314 | kernel/chr_drv/console.c | pos += video_size_row; |
pos | 329 | kernel/chr_drv/console.c | pos -= origin-video_mem_start; |
pos | 379 | kernel/chr_drv/console.c | pos += video_size_row; |
pos | 390 | kernel/chr_drv/console.c | pos -= video_size_row; |
pos | 399 | kernel/chr_drv/console.c | pos -= x<<1; |
pos | 406 | kernel/chr_drv/console.c | pos -= 2; |
pos | 415 | kernel/chr_drv/console.c | pos -= 2; |
pos | 417 | kernel/chr_drv/console.c | *(unsigned short *)pos = video_erase_char; |
pos | 429 | kernel/chr_drv/console.c | count = (scr_end-pos)>>1; |
pos | 430 | kernel/chr_drv/console.c | start = pos; |
pos | 433 | kernel/chr_drv/console.c | count = ((pos-origin)>>1)+1; |
pos | 460 | kernel/chr_drv/console.c | start = pos; |
pos | 463 | kernel/chr_drv/console.c | start = pos - (x<<1); |
pos | 467 | kernel/chr_drv/console.c | start = pos - (x<<1); |
pos | 591 | kernel/chr_drv/console.c | outb_p(0xff&((pos-video_mem_base)>>9), video_port_val); |
pos | 593 | kernel/chr_drv/console.c | outb_p(0xff&((pos-video_mem_base)>>1), video_port_val); |
pos | 740 | kernel/chr_drv/console.c | unsigned short * p = (unsigned short *) pos; |
pos | 760 | kernel/chr_drv/console.c | unsigned short * p = (unsigned short *) pos; |
pos | 913 | kernel/chr_drv/console.c | *(char *) pos = c; |
pos | 914 | kernel/chr_drv/console.c | *(char *) (pos+1) = attr; |
pos | 919 | kernel/chr_drv/console.c | pos+=2; |
pos | 936 | kernel/chr_drv/console.c | pos -= (x << 1); |
pos | 942 | kernel/chr_drv/console.c | pos += (x << 1); |
pos | 1306 | kernel/chr_drv/console.c | pos = origin = video_mem_start = base; |
pos | 1357 | kernel/chr_drv/console.c | pos = origin + y*video_size_row + (x<<1); |
pos | 1366 | kernel/chr_drv/console.c | pos = origin + y*video_size_row + (x<<1); |
pos | 1471 | kernel/chr_drv/console.c | *(char *) pos = c; |
pos | 1472 | kernel/chr_drv/console.c | *(char *) (pos+1) = attr; |
pos | 1478 | kernel/chr_drv/console.c | pos+=2; |