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

/freebsd-13-stable/sys/contrib/edk2/Include/Library/
H A DMemoryAllocationLib.h200 Allocates the number bytes specified by AllocationSize of type EfiBootServicesData and returns a
201 pointer to the allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is
204 @param AllocationSize The number of bytes to allocate.
212 IN UINTN AllocationSize
218 Allocates the number bytes specified by AllocationSize of type EfiRuntimeServicesData and returns
219 a pointer to the allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is
222 @param AllocationSize The number of bytes to allocate.
230 IN UINTN AllocationSize
236 Allocates the number bytes specified by AllocationSize of type EfiReservedMemoryType and returns
237 a pointer to the allocated buffer. If AllocationSize i
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h67 size_t AllocationSize; member in class:llvm::SectionEntry
78 AllocationSize(allocationSize), ObjAddress(objAddress) {
79 // AllocationSize is used only in asserts, prevent an "unused private field"
81 (void)AllocationSize;
90 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
101 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
109 assert(StubOffset <= AllocationSize && "Not enough space allocated!");
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp273 static uptr AllocationSize(const void *tagged_ptr) { function in namespace:__hwasan
404 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; }
406 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp257 static uptr AllocationSize(const void *p) { function in namespace:__msan
368 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; }
370 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp747 uptr AllocationSize(uptr p) { function in struct:__asan::Allocator
984 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr));
993 return instance.AllocationSize(reinterpret_cast<uptr>(ptr));
1116 return instance.AllocationSize(ptr) > 0;
1122 uptr allocated_size = instance.AllocationSize(ptr);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp2169 llvm::Optional<llvm::APInt> AllocationSize;
2172 AllocationSize = SingleEltSize;
2176 AllocationSize = llvm::APInt(SizeTyWidth, *KnownArraySize)
2186 AllocationSize.getValueOr(llvm::APInt::getNullValue(SizeTyWidth)),
2211 CallArgs.emplace_back(AllocationSize.hasValue()

Completed in 277 milliseconds