Searched refs:aligned_size (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpStack.h31 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
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_poisoning.h39 ALWAYS_INLINE void FastPoisonShadow(uptr aligned_beg, uptr aligned_size, argument
43 __sanitizer_fill_shadow(aligned_beg, aligned_size, value,
48 aligned_beg + aligned_size - SHADOW_GRANULARITY) + 1;
H A Dasan_poisoning.cpp299 uptr aligned_size = size & ~(SHADOW_GRANULARITY - 1);
300 PoisonShadow(addr, aligned_size,
302 if (size == aligned_size)
304 s8 end_offset = (s8)(size - aligned_size);
305 s8* shadow_end = (s8*)MemToShadow(addr + aligned_size);
H A Dasan_globals.cpp64 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) {
H A Dasan_malloc_linux.cpp73 uptr aligned_size = RoundUpTo(size_in_bytes, kWordSize); local
75 uptr *end_mem = (uptr*)(aligned_addr + aligned_size);
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_fb.c116 int aligned_size, size; local
129 aligned_size = roundup2(size, PAGE_SIZE);
130 ret = radeon_gem_object_create(rdev, aligned_size, 0,
136 aligned_size);
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dbitmap_allocator.h732 struct aligned_size struct in class:bitmap_allocator
743 char __M_unused[aligned_size<sizeof(value_type),
/freebsd-11-stable/contrib/gcc/
H A Dexpr.c5864 tree aligned_size = TREE_OPERAND (exp, 3);
5869 if (aligned_size)
5873 if (TREE_TYPE (aligned_size) != sizetype)
5874 aligned_size = fold_convert (sizetype, aligned_size);
5875 return size_binop (MULT_EXPR, aligned_size,
5849 tree aligned_size = TREE_OPERAND (exp, 3); local

Completed in 147 milliseconds