Searched defs:RTHEAPOFFSET_ALIGNMENT (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/alloc/
H A Dheapoffset.cpp164 #define RTHEAPOFFSET_ALIGNMENT (sizeof(RTHEAPOFFSETBLOCK)) macro
234 #define ASSERT_ALIGN(a) AssertMsg(!((uintptr_t)(a) & (RTHEAPOFFSET_ALIGNMENT - 1)), ("a=%p\n", (uintptr_t)(a)))
388 cbMemory &= ~(RTHEAPOFFSET_ALIGNMENT - 1);
433 cb = RT_ALIGN_Z(cb, RTHEAPOFFSET_ALIGNMENT);
435 cbAlignment = RTHEAPOFFSET_ALIGNMENT;
440 if (cbAlignment < RTHEAPOFFSET_ALIGNMENT)
441 cbAlignment = RTHEAPOFFSET_ALIGNMENT;
470 cb = RT_ALIGN_Z(cb, RTHEAPOFFSET_ALIGNMENT);
472 cbAlignment = RTHEAPOFFSET_ALIGNMENT;
477 if (cbAlignment < RTHEAPOFFSET_ALIGNMENT)
[all...]

Completed in 43 milliseconds