Home
last modified time | relevance | path

Searched refs:C2LinearAllocation (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/codec2/vndk/include/
DC2AllocatorBlob.h37 std::shared_ptr<C2LinearAllocation> *allocation) override;
41 std::shared_ptr<C2LinearAllocation> *allocation) override;
DC2AllocatorIon.h48 std::shared_ptr<C2LinearAllocation> *allocation) override;
52 std::shared_ptr<C2LinearAllocation> *allocation) override;
DC2DmaBufAllocator.h36 std::shared_ptr<C2LinearAllocation>* allocation) override;
39 const C2Handle* handle, std::shared_ptr<C2LinearAllocation>* allocation) override;
/frameworks/av/media/codec2/vndk/
DC2AllocatorBlob.cpp54 class C2AllocationBlob : public C2LinearAllocation {
65 bool equals(const std::shared_ptr<C2LinearAllocation>& other) const override { in equals()
81 : C2LinearAllocation(capacity), in C2AllocationBlob()
170 uint32_t capacity, C2MemoryUsage usage, std::shared_ptr<C2LinearAllocation>* allocation) { in newLinearAllocation()
197 const C2Handle* handle, std::shared_ptr<C2LinearAllocation>* allocation) { in priorLinearAllocation()
DC2DmaBufAllocator.cpp102 class C2DmaBufAllocation : public C2LinearAllocation {
111 virtual bool equals(const std::shared_ptr<C2LinearAllocation>& other) const override;
241 bool C2DmaBufAllocation::equals(const std::shared_ptr<C2LinearAllocation>& other) const { in equals()
270 : C2LinearAllocation(capacity), mHandle(-1, 0) { in C2DmaBufAllocation()
286 : C2LinearAllocation(size), mHandle(-1, 0) { in C2DmaBufAllocation()
371 uint32_t capacity, C2MemoryUsage usage, std::shared_ptr<C2LinearAllocation>* allocation) { in newLinearAllocation()
412 const C2Handle* handle, std::shared_ptr<C2LinearAllocation>* allocation) { in priorLinearAllocation()
DC2AllocatorIon.cpp92 class C2AllocationIon : public C2LinearAllocation {
102 virtual bool equals(const std::shared_ptr<C2LinearAllocation> &other) const override;
450 bool C2AllocationIon::equals(const std::shared_ptr<C2LinearAllocation> &other) const { in equals()
469 : C2LinearAllocation(size), in C2AllocationIon()
473 : C2LinearAllocation(size), in C2AllocationIon()
574 uint32_t capacity, C2MemoryUsage usage, std::shared_ptr<C2LinearAllocation> *allocation) { in newLinearAllocation()
602 const C2Handle *handle, std::shared_ptr<C2LinearAllocation> *allocation) { in priorLinearAllocation()
DC2Buffer.cpp124 _C2Block1DImpl(const std::shared_ptr<C2LinearAllocation> &alloc, in _C2Block1DImpl()
152 std::shared_ptr<C2LinearAllocation> getAllocation() const { in getAllocation()
157 std::shared_ptr<C2LinearAllocation> mAllocation;
340 std::shared_ptr<C2LinearAllocation> alloc; in fetchLinearBlock()
382 const std::shared_ptr<C2LinearAllocation> &alloc, in CreateLinearBlock()
413 std::shared_ptr<C2LinearAllocation> alloc; in CreateLinearBlock()
440 std::shared_ptr<C2LinearAllocation> alloc; in CreateLinearBlock()
504 std::shared_ptr<C2LinearAllocation> *c2Allocation);
545 LinearAllocationDtor(const std::shared_ptr<C2LinearAllocation> &alloc) in LinearAllocationDtor()
550 const std::shared_ptr<C2LinearAllocation> mAllocation;
[all …]
/frameworks/av/media/codec2/core/include/
DC2Buffer.h549 class C2LinearAllocation; variable
650 std::shared_ptr<C2LinearAllocation> *allocation /* nonnull */) { in newLinearAllocation()
675 std::shared_ptr<C2LinearAllocation> *allocation /* nonnull */) { in priorLinearAllocation()
765 class C2LinearAllocation : public _C2LinearCapacityAspect {
837 virtual bool equals(const std::shared_ptr<C2LinearAllocation> &other) const = 0;
841 C2LinearAllocation(size_t capacity) : _C2LinearCapacityAspect(c2_min(capacity, UINT32_MAX)) {} in C2LinearAllocation() function
842 virtual ~C2LinearAllocation() = default;
1118 class C2LinearAllocation; variable
/frameworks/av/media/codec2/vndk/internal/
DC2BlockInternal.h76 const std::shared_ptr<C2LinearAllocation> &alloc,
/frameworks/av/media/codec2/tests/vndk/
DC2BufferTest.cpp340 std::shared_ptr<C2LinearAllocation> mLinearAllocation;