Home
last modified time | relevance | path

Searched refs:kAlignmentMask (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/heap/cppgc/
Dobject-allocator.h153 constexpr size_t kAlignmentMask = kAlignment - 1; in AllocateObjectOnSpace() local
165 kAlignmentMask) == 0; in AllocateObjectOnSpace()
180 DCHECK_EQ(0u, reinterpret_cast<uintptr_t>(object) & kAlignmentMask); in AllocateObjectOnSpace()
/third_party/node/deps/v8/src/heap/
Dbasic-memory-chunk.h130 static const intptr_t kAlignmentMask = kAlignment - 1; variable
136 static Address BaseAddress(Address a) { return a & ~kAlignmentMask; } in BaseAddress()
Dspaces.h240 return reinterpret_cast<Page*>(o.ptr() & ~kAlignmentMask); in FromHeapObject()
/third_party/node/deps/v8/src/api/
Dapi.cc5427 static const uintptr_t kAlignmentMask = sizeof(uintptr_t) - 1; variable
5429 return reinterpret_cast<const uintptr_t>(chars) & kAlignmentMask; in Unaligned()
5434 ~kAlignmentMask); in Align()