Lines Matching defs:vcn
167 VCN vcn;
241 /* Convert iblock into corresponding vcn and offset. */
242 vcn = (VCN)iblock << blocksize_bits >>
252 /* Seek to element containing target vcn. */
253 while (rl->length && rl[1].vcn <= vcn)
255 lcn = ntfs_rl_vcn_to_lcn(rl, vcn);
283 err = ntfs_map_runlist(ni, vcn);
304 "attribute type 0x%x, vcn 0x%llx, "
308 ni->type, (unsigned long long)vcn,
532 VCN vcn;
698 /* Convert block into corresponding vcn and offset. */
699 vcn = (VCN)block << blocksize_bits;
700 vcn_ofs = vcn & vol->cluster_size_mask;
701 vcn >>= vol->cluster_size_bits;
708 /* Seek to element containing target vcn. */
709 while (rl->length && rl[1].vcn <= vcn)
711 lcn = ntfs_rl_vcn_to_lcn(rl, vcn);
761 err = ntfs_map_runlist(ni, vcn);
785 "attribute type 0x%x, vcn 0x%llx, offset 0x%x "
788 ni->type, (unsigned long long)vcn,
1002 VCN vcn;
1007 /* Obtain the vcn and offset of the current block. */
1008 vcn = (VCN)block << bh_size_bits;
1009 vcn_ofs = vcn & vol->cluster_size_mask;
1010 vcn >>= vol->cluster_size_bits;
1017 /* Seek to element containing target vcn. */
1018 while (rl->length && rl[1].vcn <= vcn)
1020 lcn = ntfs_rl_vcn_to_lcn(rl, vcn);
1044 err2 = ntfs_map_runlist(ni, vcn);