Searched defs:start_vcn (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dlcnalloc.c50 * @start_vcn: vcn to use for the first allocated cluster
103 runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count, argument
129 rl[0].vcn = start_vcn;
329 rl[rlpos].vcn = start_vcn;
742 * @start_vcn: vcn in @rl at which to start freeing clusters
745 * Free @count clusters starting at the cluster @start_vcn in the runlist
748 * If @count is -1, all clusters from @start_vcn to the end of the runlist
754 int ntfs_cluster_free(ntfs_volume *vol, ntfs_attr *na, VCN start_vcn, s64 count) argument
759 if (!vol || !vol->lcnbmp_na || !na || start_vcn < 0 ||
767 na->type, (long long)count, (long long)start_vcn);
[all...]
H A Dcompress.c328 VCN start_vcn, vcn, end_vcn; local
397 start_vcn = (pos & ~cb_size_mask) >> vol->cluster_size_bits;
407 nr_cbs = (end_vcn - start_vcn) << vol->cluster_size_bits >>
413 vcn = start_vcn;
414 start_vcn += cb_clusters;
H A Drunlist.c1288 * @start_vcn: vcn at which to start the mapping pairs array
1291 * array corresponding to the runlist @rl, starting at vcn @start_vcn. This
1301 * - @start_vcn is invalid.
1305 const runlist_element *rl, const VCN start_vcn)
1310 if (start_vcn < 0) {
1311 ntfs_log_trace("start_vcn %lld (should be >= 0)\n",
1312 (long long) start_vcn);
1317 if (start_vcn) {
1318 ntfs_log_trace("rl NULL, start_vcn %lld (should be > 0)\n",
1319 (long long) start_vcn);
1304 ntfs_get_size_for_mapping_pairs(const ntfs_volume *vol, const runlist_element *rl, const VCN start_vcn) argument
1473 ntfs_mapping_pairs_build(const ntfs_volume *vol, u8 *dst, const int dst_len, const runlist_element *rl, const VCN start_vcn, VCN *const stop_vcn) argument
1623 ntfs_rl_truncate(runlist **arl, const VCN start_vcn) argument
[all...]

Completed in 28 milliseconds