Searched refs:AllocationSize (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h75 size_t AllocationSize; member in class:llvm::SectionEntry
86 AllocationSize(allocationSize), ObjAddress(objAddress) {
87 // AllocationSize is used only in asserts, prevent an "unused private field"
89 (void)AllocationSize;
98 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
109 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
117 assert(StubOffset <= AllocationSize && "Not enough space allocated!");
/freebsd-11.0-release/contrib/compiler-rt/lib/msan/
H A Dmsan_allocator.cc212 static uptr AllocationSize(const void *p) { function in namespace:__msan
242 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; }
244 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); }
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_allocator.cc606 uptr AllocationSize(uptr p) { function in struct:__asan::Allocator
759 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr));
768 return instance.AllocationSize(reinterpret_cast<uptr>(ptr));
880 return instance.AllocationSize(ptr) > 0;
886 uptr allocated_size = instance.AllocationSize(ptr);

Completed in 61 milliseconds