Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp352 const uptr min_alignment = MEMPROF_ALIGNMENT; in Allocate() local
353 if (alignment < min_alignment) in Allocate()
354 alignment = min_alignment; in Allocate()
367 if (alignment > min_alignment) in Allocate()
369 CHECK(IsAligned(needed_size, min_alignment)); in Allocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp539 const uptr min_alignment = ASAN_SHADOW_GRANULARITY; in Allocate() local
542 if (alignment < min_alignment) in Allocate()
543 alignment = min_alignment; in Allocate()
558 if (alignment > min_alignment) in Allocate()
565 CHECK(IsAligned(needed_size, min_alignment)); in Allocate()
/freebsd/contrib/elftoolchain/elfcopy/
H A Dsections.c937 int min_alignment; in resync_sections() local
960 min_alignment = section_type_alignment(s->type, ecp->oec); in resync_sections()
961 if (s->align < INT_MAX && (int)s->align < min_alignment) { in resync_sections()
963 s->name, (int)s->align, min_alignment); in resync_sections()
964 s->align = min_alignment; in resync_sections()
/freebsd/contrib/jemalloc/src/
H A Djemalloc.c1846 size_t min_alignment; member
1874 static_opts->min_alignment = 0; in static_opts_init()
2058 if (unlikely(dopts->alignment < sopts->min_alignment in imalloc_body()
2409 sopts.min_alignment = sizeof(void *); in je_posix_memalign()
2452 sopts.min_alignment = 1; in JEMALLOC_ATTR()
2881 sopts.min_alignment = 1; in JEMALLOC_ATTR()
2921 sopts.min_alignment = PAGE; in JEMALLOC_ATTR()