Home
last modified time | relevance | path

Searched refs:AllocationSize (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldImpl.h69 size_t AllocationSize; variable
80 AllocationSize(allocationSize), ObjAddress(objAddress) { in SectionEntry()
83 (void)AllocationSize; in SectionEntry()
92 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getAddressWithOffset()
103 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getLoadAddressWithOffset()
111 assert(StubOffset <= AllocationSize && "Not enough space allocated!"); in advanceStubOffset()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldImpl.h69 size_t AllocationSize; variable
80 AllocationSize(allocationSize), ObjAddress(objAddress) { in SectionEntry()
83 (void)AllocationSize; in SectionEntry()
92 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getAddressWithOffset()
103 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getLoadAddressWithOffset()
111 assert(StubOffset <= AllocationSize && "Not enough space allocated!"); in advanceStubOffset()
/external/compiler-rt/lib/msan/
Dmsan_allocator.cc212 static uptr AllocationSize(const void *p) { in AllocationSize() function
242 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; } in __sanitizer_get_ownership()
244 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); } in __sanitizer_get_allocated_size()
/external/compiler-rt/lib/asan/
Dasan_allocator.cc616 uptr AllocationSize(uptr p) { in AllocationSize() function
775 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr)); in asan_malloc_usable_size()
784 return instance.AllocationSize(reinterpret_cast<uptr>(ptr)); in asan_mz_size()
896 return instance.AllocationSize(ptr) > 0; in __sanitizer_get_ownership()
902 uptr allocated_size = instance.AllocationSize(ptr); in __sanitizer_get_allocated_size()