Lines Matching refs:size_alloc
1179 name->size_alloc = sle64_to_cpu(attr->allocated_size);
1207 file->max_size = max(file->max_size, name->size_alloc);
1235 name->size_alloc = sle64_to_cpu(attr->allocated_size);
1306 data->size_alloc = sle64_to_cpu(rec->allocated_size);
1611 ntfs_log_quiet("Size alloc: %lld\n", f->size_alloc);
1641 ntfs_log_quiet("Size alloc: %lld\n", d->size_alloc);
2164 * 0 <= (data->size_alloc - data->size_data) <= vol->cluster_size AND
2165 * cluster_count * vol->cluster_size == data->size_alloc THEN file
2174 if (d->percent == 100 && d->size_alloc >= d->size_data &&
2175 (d->size_alloc - d->size_data) <= (long long)vol->cluster_size &&
2176 cluster_count * (long long)vol->cluster_size == d->size_alloc) {