Home
last modified time | relevance | path

Searched defs:ChunkHeader (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_allocator.cc73 struct ChunkHeader { struct
75 u32 chunk_state : 8; // Must be first.
76 u32 alloc_tid : 24;
78 u32 free_tid : 24;
79 u32 from_memalign : 1;
80 u32 alloc_type : 2;
81 u32 rz_log : 3;
82 u32 lsan_tag : 2;
87 u32 user_requested_size : 29;
90 u32 user_requested_alignment_log : 3;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_allocator.cc71 struct ChunkHeader { struct
73 u32 chunk_state : 8; // Must be first.
74 u32 alloc_tid : 24;
76 u32 free_tid : 24;
77 u32 from_memalign : 1;
78 u32 alloc_type : 2;
79 u32 rz_log : 3;
80 u32 lsan_tag : 2;
85 u32 user_requested_size : 29;
88 u32 user_requested_alignment_log : 3;
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_allocator.cpp88 class ChunkHeader { class