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

/netbsd-current/external/apache2/llvm/dist/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!");
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_allocator.cc247 static uptr AllocationSize(const void *p) { function in namespace:__msan
348 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; }
350 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); }
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_allocator.cpp346 static uptr AllocationSize(const void *tagged_ptr) { function in namespace:__hwasan
477 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; }
479 uptr __sanitizer_get_allocated_size(const void *p) { return AllocationSize(p); }
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_allocator.cc731 uptr AllocationSize(uptr p) { function in struct:__asan::Allocator
957 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr));
966 return instance.AllocationSize(reinterpret_cast<uptr>(ptr));
1078 return instance.AllocationSize(ptr) > 0;
1084 uptr allocated_size = instance.AllocationSize(ptr);
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_allocator.cc729 uptr AllocationSize(uptr p) { function in struct:__asan::Allocator
955 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr));
964 return instance.AllocationSize(reinterpret_cast<uptr>(ptr));
1076 return instance.AllocationSize(ptr) > 0;
1082 uptr allocated_size = instance.AllocationSize(ptr);
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_allocator.cpp803 uptr AllocationSize(uptr p) { function in struct:__asan::Allocator
1056 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr));
1065 return instance.AllocationSize(reinterpret_cast<uptr>(ptr));
1209 return instance.AllocationSize(ptr) > 0;
1215 uptr allocated_size = instance.AllocationSize(ptr);
/netbsd-current/external/mit/libuv/dist/src/win/
H A Dwinapi.h4238 LARGE_INTEGER AllocationSize; member in struct:_FILE_DIRECTORY_INFORMATION
4252 LARGE_INTEGER AllocationSize; member in struct:_FILE_BOTH_DIR_INFORMATION
4270 LARGE_INTEGER AllocationSize; member in struct:_FILE_STANDARD_INFORMATION
H A Dfs.c1813 (uint64_t) file_info.StandardInformation.AllocationSize.QuadPart >> 9;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprCXX.cpp2217 llvm::Optional<llvm::APInt> AllocationSize;
2220 AllocationSize = SingleEltSize;
2224 AllocationSize = llvm::APInt(SizeTyWidth, *KnownArraySize)
2234 AllocationSize.getValueOr(llvm::APInt::getNullValue(SizeTyWidth)),
2259 CallArgs.emplace_back(AllocationSize.hasValue()

Completed in 362 milliseconds