diff options
Diffstat (limited to 'include/apos/sizes.h')
| -rw-r--r-- | include/apos/sizes.h | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/include/apos/sizes.h b/include/apos/sizes.h index 2eafa2e..40c3590 100644 --- a/include/apos/sizes.h +++ b/include/apos/sizes.h @@ -122,46 +122,40 @@ #define SZ_32G 0x000800000000UL /** 64GiB. */ -#define SZ_64G 0x000400000000UL +#define SZ_64G 0x001000000000UL /** 128GiB. */ -#define SZ_128G 0x000800000000UL +#define SZ_128G 0x002000000000UL /** 256GiB. */ -#define SZ_256G 0x001000000000UL +#define SZ_256G 0x004000000000UL /** 512GiB. */ -#define SZ_512G 0x002000000000UL +#define SZ_512G 0x008000000000UL /** 1TiB. */ -#define SZ_1T 0x004000000000UL +#define SZ_1T 0x010000000000UL /** 2TiB. */ -#define SZ_2T 0x008000000000UL +#define SZ_2T 0x020000000000UL /** 4TiB. */ -#define SZ_4T 0x010000000000UL +#define SZ_4T 0x040000000000UL /** 8TiB. */ -#define SZ_8T 0x020000000000UL +#define SZ_8T 0x080000000000UL /** 16TiB. */ -#define SZ_16T 0x040000000000UL +#define SZ_16T 0x100000000000UL /** 32TiB. */ -#define SZ_32T 0x080000000000UL +#define SZ_32T 0x200000000000UL /** 64TiB. */ -#define SZ_64T 0x100000000000UL +#define SZ_64T 0x400000000000UL /** 128TiB. */ -#define SZ_128T 0x200000000000UL - -/** 256TiB. */ -#define SZ_256T 0x400000000000UL - -/** 512TiB. */ -#define SZ_512T 0x800000000000UL +#define SZ_128T 0x8000000000000UL #else |
