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,
533 VCN vcn;
700 /* Convert block into corresponding vcn and offset. */
701 vcn = (VCN)block << blocksize_bits;
702 vcn_ofs = vcn & vol->cluster_size_mask;
703 vcn >>= vol->cluster_size_bits;
710 /* Seek to element containing target vcn. */
711 while (rl->length && rl[1].vcn <= vcn)
713 lcn = ntfs_rl_vcn_to_lcn(rl, vcn);
763 err = ntfs_map_runlist(ni, vcn);
787 "attribute type 0x%x, vcn 0x%llx, offset 0x%x "
790 ni->type, (unsigned long long)vcn,
1004 VCN vcn;
1009 /* Obtain the vcn and offset of the current block. */
1010 vcn = (VCN)block << bh_size_bits;
1011 vcn_ofs = vcn & vol->cluster_size_mask;
1012 vcn >>= vol->cluster_size_bits;
1019 /* Seek to element containing target vcn. */
1020 while (rl->length && rl[1].vcn <= vcn)
1022 lcn = ntfs_rl_vcn_to_lcn(rl, vcn);
1046 err2 = ntfs_map_runlist(ni, vcn);