Home
last modified time | relevance | path

Searched refs:AllocationSize (Results 1 – 11 of 11) 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()
/external/angle/src/common/
DPoolAlloc.h78 static size_t AllocationSize(size_t size) { return size + 2 * kGuardBlockSize + HeaderSize(); } in AllocationSize() function
DPoolAlloc.cpp225 size_t allocationSize = Allocation::AllocationSize(numBytes) + mAlignment; in allocate()
/external/v4l2_codec2/accel/
Dvideo_frame.h134 static size_t AllocationSize(VideoPixelFormat format, const Size& coded_size);
Dvideo_frame.cc275 size_t VideoFrame::AllocationSize(VideoPixelFormat format, in AllocationSize() function in media::VideoFrame
Dv4l2_device.cc1438 DCHECK_LE(sizeimage, VideoFrame::AllocationSize(frame_format, coded_size)); in AllocatedSizeFromV4L2Format()
/external/angle/third_party/VulkanMemoryAllocator/src/
DTests.cpp83 struct AllocationSize struct
97 std::vector<AllocationSize> AllocationSizes; argument
127 std::vector<AllocationSize> AllocationSizes;
135 const AllocationSize& allocSize = AllocationSizes[i]; in CalcAvgResourceSize()
334 [](uint32_t sum, const AllocationSize& allocSize) { in MainTest()
463 const AllocationSize& allocSize = config.AllocationSizes[allocSizeIndex]; in MainTest()
4286 [](uint32_t sum, const AllocationSize& allocSize) { in TestPool_Benchmark()
4419 const AllocationSize& allocSize = config.AllocationSizes[allocSizeIndex]; in TestPool_Benchmark()
5531 AllocationSize allocSize = {}; in PerformCustomPoolTest()
/external/v4l2_codec2/components/
DV4L2EncodeComponent.cpp1454 bytesUsed = media::VideoFrame::AllocationSize(format, mInputLayout->coded_size()); in enqueueInputBuffer()