HomeSort by: relevance | last modified time | path
    Searched refs:ALIGNED (Results 1 - 23 of 23) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_allocator.h 23 // Allocator cache contains atomic_uint64_t which must be 8-byte aligned.
24 ALIGNED(8) uptr allocator_cache[96 * (512 * 8 + 16)]; // Opaque.
msan.cc 42 // aligned address.
59 ALIGNED(16) THREADLOCAL u64 __msan_va_arg_tls[kMsanParamTlsSize / sizeof(u64)];
62 ALIGNED(16)
599 uptr aligned = x & ~3ULL; local in function:__msan_get_origin
600 uptr origin_ptr = MEM_TO_ORIGIN(aligned);
msan_interceptors.cc 1099 static ALIGNED(64) char interceptor_placeholder[sizeof(InterceptorContext)];
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_globals_win.cc 22 ALIGNED(sizeof(__asan_global)) __asan_global __asan_globals_start = {};
24 ALIGNED(sizeof(__asan_global)) __asan_global __asan_globals_end = {};
asan_suppressions.cc 24 ALIGNED(64) static char suppression_placeholder[sizeof(SuppressionContext)];
asan_malloc_linux.cc 265 ALIGNED(32) const MallocDebugK asan_malloc_dispatch_k = {
269 ALIGNED(32) const MallocDebugL asan_malloc_dispatch_l = {
asan_thread.cc 43 // MIPS requires aligned address
44 static ALIGNED(16) char thread_registry_placeholder[sizeof(ThreadRegistry)];
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_atomic.h 52 // On 32-bit platforms u64 is not necessary aligned on 8 bytes.
53 volatile ALIGNED(8) Type val_dont_use;
sanitizer_internal_defs.h 214 # define ALIGNED(x) __declspec(align(x))
226 // Please only use the ALIGNED macro before the type.
227 // Using ALIGNED after the variable declaration is not portable!
228 # define ALIGNED(x) __attribute__((aligned(x)))
259 typedef ALIGNED(1) u16 uu16;
260 typedef ALIGNED(1) u32 uu32;
261 typedef ALIGNED(1) u64 uu64;
262 typedef ALIGNED(1) s16 us16;
263 typedef ALIGNED(1) s32 us32
    [all...]
sanitizer_mutex.h 93 ALIGNED(8) uptr opaque_storage_[10];
sanitizer_allocator.cc 88 static ALIGNED(64) char internal_alloc_placeholder[sizeof(InternalAllocator)];
sanitizer_allocator_primary32.h 29 // Since the regions are aligned by kRegionSize, there are exactly
39 // chache-line aligned.
269 struct ALIGNED(SANITIZER_CACHE_LINE_SIZE) SizeClassInfo {
sanitizer_allocator_primary64.h 85 // Check that the RegionInfo array is aligned on the CacheLine size.
596 struct ALIGNED(SANITIZER_CACHE_LINE_SIZE) RegionInfo {
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common_linux.cc 31 static char linker_placeholder[sizeof(LoadedModule)] ALIGNED(64);
lsan_thread.cc 37 static ALIGNED(64) char thread_registry_placeholder[sizeof(ThreadRegistry)];
lsan_common.cc 68 ALIGNED(64) static char suppression_placeholder[sizeof(SuppressionContext)];
107 ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)];
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 45 ALIGNED(64) static char suppression_placeholder[sizeof(SuppressionContext)];
tsan_mman.cc 65 static char allocator_placeholder[sizeof(Allocator)] ALIGNED(64);
80 static char global_proc_placeholder[sizeof(GlobalProc)] ALIGNED(64);
tsan_platform_mac.cc 76 ALIGNED(64) static char main_thread_state[sizeof(ThreadState)];
tsan_rtl.cc 50 THREADLOCAL char cur_thread_placeholder[sizeof(ThreadState)] ALIGNED(64);
52 static char ctx_placeholder[sizeof(Context)] ALIGNED(64);
243 // Global data is not 64K aligned, but there are no adjacent mappings,
tsan_interface_ann.cc 87 static char dyn_ann_ctx_placeholder[sizeof(DynamicAnnContext)] ALIGNED(64);
tsan_interceptors.cc 193 // The object is 64-byte aligned, because we want hot data to be located
195 ALIGNED(64) LibIgnore libignore;
209 static ALIGNED(64) char interceptor_placeholder[sizeof(InterceptorContext)];
2550 // Note: __tls_get_addr can be called with mis-aligned stack due to:
2552 // So the interceptor must work with mis-aligned stack, in particular, does not
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 331 // * If we have a pointer-size, pointer-aligned range highlighted,
388 ALIGNED(64) static char suppression_placeholder[sizeof(SuppressionContext)];

Completed in 38 milliseconds