taglinefilesource code
hash_pos32fs/affs/amigaffs.caffs_find_next_hash_entry(int hsize, void *dir_data, ULONG *hash_pos)
hash_pos37fs/affs/amigaffs.cfor (i = *hash_pos; i < hsize; i++)
hash_pos42fs/affs/amigaffs.c*hash_pos = i;
hash_pos76fs/affs/dir.cULONG       hash_pos;
hash_pos122fs/affs/dir.chash_pos  = (filp->f_pos - 2) >> 16;
hash_pos126fs/affs/dir.chash_pos++;
hash_pos127fs/affs/dir.cfilp->f_pos = ((hash_pos << 16) | chain_pos) + 2;
hash_pos133fs/affs/dir.cwhile (hash_pos < AFFS_I2HSIZE(inode) &&
hash_pos134fs/affs/dir.c!((struct dir_front *)dir_bh->b_data)->hashtable[hash_pos])
hash_pos135fs/affs/dir.chash_pos++;
hash_pos136fs/affs/dir.cif (hash_pos >= AFFS_I2HSIZE(inode))
hash_pos139fs/affs/dir.ci = htonl(((struct dir_front *)dir_bh->b_data)->hashtable[hash_pos]);
hash_pos150fs/affs/dir.cpd_debug("AFFS: hash_pos=%lu chain_pos=%lu\n", hash_pos, chain_pos);
hash_pos176fs/affs/dir.chash_pos++;
hash_pos180fs/affs/dir.cfilp->f_pos = ((hash_pos << 16) | chain_pos) + 2;
hash_pos29include/linux/affs_fs.hextern int       affs_find_next_hash_entry(int bsize, void *dir_data, ULONG *hash_pos);