Skip to content

Instantly share code, notes, and snippets.

View zerojiu's full-sized avatar

Joooooohn zerojiu

View GitHub Profile
@zerojiu
zerojiu / MacroMemory.cxx
Last active April 24, 2017 02:57
Macro definition of memory operation
/* Given a size, round up to aligenment sizeof(void*) */
#define MAX_ALIGNMENT 4
#define ROUND_UP_TO_ALIGNMENT_SIZE(x) (((x) + MAX_ALIGNMENT - 1u) & ~(MAX_ALIGNMENT - 1u))