Home
last modified time | relevance | path

Searched refs:mp_ofs (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/fs/ntfs/
Dattrib.c1548 int mp_size, mp_ofs, name_ofs, arec_size, err, err2; in ntfs_attr_make_non_resident() local
1646 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7; in ntfs_attr_make_non_resident()
1651 arec_size = (mp_ofs + mp_size + 7) & ~7; in ntfs_attr_make_non_resident()
1688 a->data.non_resident.mapping_pairs_offset = cpu_to_le16(mp_ofs); in ntfs_attr_make_non_resident()
1704 err = ntfs_mapping_pairs_build(vol, (u8*)a + mp_ofs, in ntfs_attr_make_non_resident()
1705 arec_size - mp_ofs, rl, 0, -1, NULL); in ntfs_attr_make_non_resident()
1764 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7; in ntfs_attr_make_non_resident()
1766 arec_size = (mp_ofs + attr_size + 7) & ~7; in ntfs_attr_make_non_resident()
1779 if ((mp_ofs + attr_size) > arec_size) { in ntfs_attr_make_non_resident()
1781 attr_size = arec_size - mp_ofs; in ntfs_attr_make_non_resident()
[all …]