| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| InterpStack.h | 31 new (grow(aligned_size<T>())) T(std::forward<Tys>(Args)...); 39 shrink(aligned_size<T>()); 47 shrink(aligned_size<T>()); 52 return *reinterpret_cast<T *>(peek(aligned_size<T>())); 67 template <typename T> constexpr size_t aligned_size() const { function in class:clang::interp::final
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_fb.c | 146 int aligned_size, size; local 163 aligned_size = ALIGN(size, PAGE_SIZE); 164 ret = amdgpu_gem_object_create(adev, aligned_size, 0, domain, flags, 167 pr_err("failed to allocate framebuffer (%d)\n", aligned_size);
|
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_fb.c | 149 int aligned_size, size; local 163 aligned_size = ALIGN(size, PAGE_SIZE); 164 ret = radeon_gem_object_create(rdev, aligned_size, 0, 168 pr_err("failed to allocate framebuffer (%d)\n", aligned_size);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
| memory_resource.cc | 184 // aligned_size<N> stores the size and alignment of a memory allocation. 189 struct aligned_size struct in namespace:pmr::__anon14868 198 aligned_size(size_t sz, size_t align) noexcept 284 aligned_size<64> _M_size; 608 aligned_size<min> _M_size;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ |
| memory_resource.cc | 184 // aligned_size<N> stores the size and alignment of a memory allocation. 189 struct aligned_size struct in namespace:pmr::__anon17261 198 aligned_size(size_t sz, size_t align) noexcept 284 aligned_size<64> _M_size; 608 aligned_size<min> _M_size;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_globals.cc | 65 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY); local 66 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, 68 if (g.size != aligned_size) {
|
| asan_malloc_linux.cc | 74 uptr aligned_size = RoundUpTo(size_in_bytes, kWordSize); local 76 uptr *end_mem = (uptr*)(aligned_addr + aligned_size);
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_globals.cpp | 63 uptr aligned_size = RoundUpTo(g.size, ASAN_SHADOW_GRANULARITY); local 64 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, 66 if (g.size != aligned_size) {
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_globals.cpp | 64 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY); local 65 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, 67 if (g.size != aligned_size) {
|
| /src/external/bsd/nsd/dist/ |
| region-allocator.c | 254 size_t aligned_size; local 260 aligned_size = REGION_ALIGN_UP(size, ALIGNMENT); 262 if (aligned_size >= region->large_object_size) { 278 if (region->recycle_bin && region->recycle_bin[aligned_size]) { 279 result = (void*)region->recycle_bin[aligned_size]; 280 region->recycle_bin[aligned_size] = region->recycle_bin[aligned_size]->next; 281 region->recycle_size -= aligned_size; 282 region->unused_space += aligned_size - size; 286 if (region->allocated + aligned_size > region->chunk_size) 453 size_t aligned_size; local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| bitmap_allocator.h | 709 struct aligned_size struct in class:bitmap_allocator 720 char __M_unused[aligned_size<sizeof(value_type),
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| bitmap_allocator.h | 707 struct aligned_size struct in class:bitmap_allocator 718 char __M_unused[aligned_size<sizeof(value_type),
|
| /src/sys/arch/shark/ofw/ |
| ofw.c | 1886 vsize_t aligned_size; local 1893 for (aligned_size = 1; aligned_size < alloc_size; aligned_size <<= 1) 1900 va = (*free_pp & ~(aligned_size - 1)) - aligned_size; 1903 pa = ofw_claimphys(0, alloc_size, aligned_size);
|