mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-12-02 11:59:08 -06:00
37 lines
893 B
C
37 lines
893 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef MEMSIZE_H
|
||
|
#define MEMSIZE_H
|
||
|
/*
|
||
|
* Provides some convenient constants and constant constructors.
|
||
|
*
|
||
|
* Copyright (C) 2020 Martin Whitaker.
|
||
|
*/
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define KB 10
|
||
|
#define MB 20
|
||
|
#define GB 30
|
||
|
#define TB 40
|
||
|
|
||
|
#define VM_PAGE_SHIFT 21
|
||
|
#define VM_PAGE_SIZE (1 << VM_PAGE_SHIFT)
|
||
|
|
||
|
#define PAGE_SHIFT 12
|
||
|
#define PAGE_SIZE (1 << PAGE_SHIFT)
|
||
|
|
||
|
#define VM_PAGE_C(size, units) \
|
||
|
(units < VM_PAGE_SHIFT ? (uintptr_t)(size) << (VM_PAGE_SHIFT - units) : (uintptr_t)(size) << (units - VM_PAGE_SHIFT))
|
||
|
|
||
|
#define PAGE_C(size, units) \
|
||
|
(units < PAGE_SHIFT ? (uintptr_t)(size) << (PAGE_SHIFT - units) : (uintptr_t)(size) << (units - PAGE_SHIFT))
|
||
|
|
||
|
#define ADDR_C(size, units) \
|
||
|
((uintptr_t)(size) << units)
|
||
|
|
||
|
#define SIZE_C(size, units) \
|
||
|
((size_t)(size) << units)
|
||
|
|
||
|
#endif // MEMSIZE_H
|