Lines Matching refs:offset
41 unsigned long block, f_pos, offset, block_saved, offset_saved; in isofs_find_entry() local
49 offset = 0; in isofs_find_entry()
63 de = (struct iso_directory_record *) (bh->b_data + offset); in isofs_find_entry()
71 offset = 0; in isofs_find_entry()
76 offset_saved = offset; in isofs_find_entry()
77 offset += de_len; in isofs_find_entry()
81 if (offset >= bufsize) { in isofs_find_entry()
82 int slop = bufsize - offset + de_len; in isofs_find_entry()
84 offset &= bufsize - 1; in isofs_find_entry()
88 if (offset) { in isofs_find_entry()
92 memcpy((void *) tmpde + slop, bh->b_data, offset); in isofs_find_entry()
156 unsigned long uninitialized_var(offset); in isofs_lookup()
165 &block, &offset, in isofs_lookup()
170 inode = found ? isofs_iget(dir->i_sb, block, offset) : NULL; in isofs_lookup()