...
This commit is contained in:
@@ -66,6 +66,6 @@ typedef signed long long i64;
|
||||
#define U64_C(x) x##ULL
|
||||
|
||||
#define KiB(count) (U64_C(count) * U64_C(1024))
|
||||
#define MiB(count) (U64_C(count) * U64_C(1024) * U64_C(1024))
|
||||
#define GiB(count) (U64_C(count) * U64_C(1024) * U64_C(1024) * U64_C(1024))
|
||||
#define TiB(count) (U64_C(count) * U64_C(1024) * U64_C(1024) * U64_C(1024) * U64_C(1024))
|
||||
#define MiB(count) (U64_C(count) * KiB(1024))
|
||||
#define GiB(count) (U64_C(count) * MiB(1024))
|
||||
#define TiB(count) (U64_C(count) * GiB(1024))
|
||||
Reference in New Issue
Block a user