Home
last modified time | relevance | path

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

/freebsd-12.1/sys/contrib/edk2/Include/Library/
H A DMemoryAllocationLib.h218 IN UINTN AllocationSize
236 IN UINTN AllocationSize
254 IN UINTN AllocationSize
273 IN UINTN AllocationSize
292 IN UINTN AllocationSize
311 IN UINTN AllocationSize
334 IN UINTN AllocationSize,
358 IN UINTN AllocationSize,
382 IN UINTN AllocationSize,
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A 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()
/freebsd-12.1/contrib/compiler-rt/lib/msan/
H A Dmsan_allocator.cc247 static uptr AllocationSize(const void *p) { in AllocationSize() function
348 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; } in __sanitizer_get_ownership()
350 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); } in __sanitizer_get_allocated_size()
/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cc297 static uptr AllocationSize(const void *tagged_ptr) { in AllocationSize() function
442 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; } in __sanitizer_get_ownership()
444 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); } in __sanitizer_get_allocated_size()
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_allocator.cc731 uptr AllocationSize(uptr p) { in AllocationSize() function
957 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr)); in asan_malloc_usable_size()
966 return instance.AllocationSize(reinterpret_cast<uptr>(ptr)); in asan_mz_size()
1078 return instance.AllocationSize(ptr) > 0; in __sanitizer_get_ownership()
1084 uptr allocated_size = instance.AllocationSize(ptr); in __sanitizer_get_allocated_size()