N64FlashcartMenu
Loading...
Searching...
No Matches
utils.h File Reference

Utility macros and functions. More...

Go to the source code of this file.

Macros

#define ALIGN(x, a)
 Aligns a value to the specified alignment.
 
#define MAX(a, b)
 Returns the maximum of two values.
 
#define MIN(a, b)
 Returns the minimum of two values.
 
#define KiB(x)
 Converts a value to kibibytes.
 
#define MiB(x)
 Converts a value to mebibytes.
 

Detailed Description

Utility macros and functions.

Macro Definition Documentation

◆ ALIGN

#define ALIGN ( x,
a )
Value:
(((x) + ((typeof(x))(a) - 1)) & ~((typeof(x))(a) - 1))

Aligns a value to the specified alignment.

This macro aligns the given value x to the specified alignment a.

Parameters
xThe value to align.
aThe alignment boundary.
Returns
The aligned value.

◆ MAX

#define MAX ( a,
b )
Value:
({ typeof(a) _a = a; typeof(b) _b = b; _a > _b ? _a : _b; })

Returns the maximum of two values.

This macro returns the maximum of the two provided values a and b.

Parameters
aThe first value.
bThe second value.
Returns
The maximum of a and b.

◆ MIN

#define MIN ( a,
b )
Value:
({ typeof(a) _a = a; typeof(b) _b = b; _a < _b ? _a : _b; })

Returns the minimum of two values.

This macro returns the minimum of the two provided values a and b.

Parameters
aThe first value.
bThe second value.
Returns
The minimum of a and b.

◆ KiB

#define KiB ( x)
Value:
((x) * 1024)

Converts a value to kibibytes.

This macro converts the given value x to kibibytes.

Parameters
xThe value to convert.
Returns
The value in kibibytes.

◆ MiB

#define MiB ( x)
Value:
((x) * 1024 * 1024)

Converts a value to mebibytes.

This macro converts the given value x to mebibytes.

Parameters
xThe value to convert.
Returns
The value in mebibytes.