diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-08-17 21:47:38 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-08-17 21:49:16 +0300 |
| commit | 565724db3b73ee67fa996dab511dc52df586cee1 (patch) | |
| tree | d3bd77006c2c57aa961f85c4fc677bd72f6251ae /include/apos/sizes.h | |
| download | kmi-565724db3b73ee67fa996dab511dc52df586cee1.tar.gz kmi-565724db3b73ee67fa996dab511dc52df586cee1.zip | |
Garbage
Diffstat (limited to 'include/apos/sizes.h')
| -rw-r--r-- | include/apos/sizes.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/include/apos/sizes.h b/include/apos/sizes.h new file mode 100644 index 0000000..58a68bc --- /dev/null +++ b/include/apos/sizes.h @@ -0,0 +1,59 @@ +#ifndef APOS_SIZES_H +#define APOS_SIZES_H + +#define SZ_1 0x000000000001 +#define SZ_2 0x000000000002 +#define SZ_4 0x000000000004 +#define SZ_8 0x000000000008 +#define SZ_16 0x000000000010 +#define SZ_32 0x000000000020 +#define SZ_64 0x000000000040 +#define SZ_128 0x000000000080 +#define SZ_256 0x000000000100 +#define SZ_512 0x000000000200 + +#define SZ_1K 0x000000000400 +#define SZ_2K 0x000000000800 +#define SZ_4K 0x000000001000 +#define SZ_8K 0x000000002000 +#define SZ_16K 0x000000004000 +#define SZ_32K 0x000000008000 +#define SZ_64K 0x000000010000 +#define SZ_128K 0x000000020000 +#define SZ_256K 0x000000040000 +#define SZ_512K 0x000000080000 + +#define SZ_1M 0x000000100000 +#define SZ_2M 0x000000200000 +#define SZ_4M 0x000000400000 +#define SZ_8M 0x000000800000 +#define SZ_16M 0x000001000000 +#define SZ_32M 0x000002000000 +#define SZ_64M 0x000004000000 +#define SZ_128M 0x000008000000 +#define SZ_256M 0x000010000000 +#define SZ_512M 0x000020000000 + +#define SZ_1G 0x000040000000 +#define SZ_2G 0x000080000000 +#define SZ_4G 0x000100000000 +#define SZ_8G 0x000200000000 +#define SZ_16G 0x000400000000 +#define SZ_32G 0x000800000000 +#define SZ_64G 0x000400000000 +#define SZ_128G 0x000800000000 +#define SZ_256G 0x001000000000 +#define SZ_512G 0x002000000000 + +#define SZ_1T 0x004000000000 +#define SZ_2T 0x008000000000 +#define SZ_4T 0x010000000000 +#define SZ_8T 0x020000000000 +#define SZ_16T 0x040000000000 +#define SZ_32T 0x080000000000 +#define SZ_64T 0x100000000000 +#define SZ_128T 0x200000000000 +#define SZ_256T 0x400000000000 +#define SZ_512T 0x800000000000 + +#endif /* APOS_SIZES_H */ |
