Home
last modified time | relevance | path

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

/reactos/dll/shellext/shellbtrfs/
H A Dpropsheet.cpp233 totalsize += bii2.inline_length; in check_file()
243 totalsize += bii2.disk_size_zlib; in check_file()
248 totalsize += bii2.disk_size_lzo; in check_file()
253 totalsize += bii2.disk_size_zstd; in check_file()
336 totalsize = allocsize = sparsesize = 0; in load_file_list()
470 totalsize += bii2.inline_length; in set_cmdline()
480 totalsize += bii2.disk_size_zlib; in set_cmdline()
485 totalsize += bii2.disk_size_lzo; in set_cmdline()
490 totalsize += bii2.disk_size_zstd; in set_cmdline()
735 format_size(totalsize, size_on_disk, true); in set_size_on_disk()
[all …]
H A Dpropsheet.h113 totalsize = allocsize = sparsesize = 0; in BtrfsPropSheet()
190 uint64_t sizes[5], totalsize, allocsize, sparsesize, num_extents; variable
/reactos/dll/win32/mscms/
H A Dprofile.c811 DWORD i, len = sizeof(colordir), count = 0, totalsize = 0; in EnumColorProfilesA() local
864 totalsize += len; in EnumColorProfilesA()
900 totalsize += len; in EnumColorProfilesA()
908 totalsize++; in EnumColorProfilesA()
909 if (buffer && *size >= totalsize) in EnumColorProfilesA()
927 *size = totalsize; in EnumColorProfilesA()
1005 totalsize += len; in EnumColorProfilesW()
1032 totalsize += len; in EnumColorProfilesW()
1038 totalsize++; in EnumColorProfilesW()
1039 if (buffer && *size >= totalsize) in EnumColorProfilesW()
[all …]
/reactos/drivers/filesystems/btrfs/
H A Dbtrfs.c619 static void calculate_total_space(_In_ device_extension* Vcb, _Out_ uint64_t* totalsize, _Out_ uint… argument
644 *totalsize = (Vcb->superblock.total_bytes >> Vcb->sector_shift) * nfactor / dfactor;
645 *freespace = sectors_used > *totalsize ? 0 : (*totalsize - sectors_used);