Home
last modified time | relevance | path

Searched refs:AlignedPtr (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DAllocator.h160 char *AlignedPtr = CurPtr + Adjustment; in Allocate() local
161 CurPtr = AlignedPtr + SizeToAllocate; in Allocate()
165 __msan_allocated_memory(AlignedPtr, Size); in Allocate()
167 __asan_unpoison_memory_region(AlignedPtr, Size); in Allocate()
168 return AlignedPtr; in Allocate()
183 char *AlignedPtr = (char*)AlignedAddr; in Allocate() local
184 __msan_allocated_memory(AlignedPtr, Size); in Allocate()
185 __asan_unpoison_memory_region(AlignedPtr, Size); in Allocate()
186 return AlignedPtr; in Allocate()
194 char *AlignedPtr = (char*)AlignedAddr; in Allocate() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkRunner.h53 AlignedPtr( in ScratchSpace()
56 char *ptr() const { return AlignedPtr; } in ptr()
61 char *const AlignedPtr; member