Searched refs:kAlignment (Results 1 - 3 of 3) sorted by relevance

/haiku/src/system/runtime_loader/
H A Dheap.cpp41 const static size_t kAlignment = alignof(max_align_t); variable
43 const static size_t kAlignment = 8; variable
64 char fAlignment[kAlignment];
170 align(size_t size, size_t alignment = kAlignment) argument
333 // align the size requirement to a kAlignment bytes boundary
/haiku/src/kits/media/
H A DRealtimeAlloc.cpp75 const static uint32 kAlignment = 256; variable
106 splitSize = (splitSize - 1 + kAlignment) & ~(kAlignment - 1);
351 // align the size requirement to a kAlignment bytes boundary
352 size = (size - 1 + kAlignment) & ~(size_t)(kAlignment - 1);
372 if (chunk->Size() > size + sizeof(FreeChunk) + kAlignment) {
375 // size of kAlignment allocatable bytes).
/haiku/src/system/boot/loader/
H A Dheap.cpp53 const static size_t kAlignment = 8; variable
70 char fAlignment[kAlignment];
222 return size_t(key) / kAlignment;
256 return (size + kAlignment - 1) & ~(kAlignment - 1);
458 // align the size requirement to a kAlignment bytes boundary

Completed in 97 milliseconds