Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libc/src/__support/GPU/
H A Dallocator.cpp32 constexpr static uint64_t SLAB_ALIGNMENT = SLAB_SIZE - 1; variable
551 if (__builtin_is_aligned(ptr, SLAB_ALIGNMENT + 1)) in deallocate()
556 (reinterpret_cast<uintptr_t>(ptr) & ~SLAB_ALIGNMENT))); in deallocate()
566 if (__builtin_is_aligned(ptr, SLAB_ALIGNMENT + 1)) in reallocate()
571 (reinterpret_cast<uintptr_t>(ptr) & ~SLAB_ALIGNMENT))); in reallocate()
593 if (alignment > SLAB_ALIGNMENT + 1) in aligned_allocate()