Home
last modified time | relevance | path

Searched refs:_C2LinearCapacityAspect (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/codec2/core/include/
DC2Buffer.h342 class _C2LinearCapacityAspect {
359 inline explicit _C2LinearCapacityAspect(size_t capacity) = delete;
362 inline explicit constexpr _C2LinearCapacityAspect(uint32_t capacity) in _C2LinearCapacityAspect() function
365 inline explicit constexpr _C2LinearCapacityAspect(const _C2LinearCapacityAspect *parent) in _C2LinearCapacityAspect() function
378 class _C2LinearRangeAspect : public _C2LinearCapacityAspect {
393 : _C2LinearCapacityAspect(capacity_), in _C2LinearRangeAspect()
401 : _C2LinearCapacityAspect(other.capacity()), in _C2LinearRangeAspect()
407 inline constexpr explicit _C2LinearRangeAspect(const _C2LinearCapacityAspect *parent) in _C2LinearRangeAspect()
408 : _C2LinearCapacityAspect(parent), in _C2LinearRangeAspect()
414 …inline constexpr _C2LinearRangeAspect(const _C2LinearCapacityAspect *parent, size_t offset, size_t… in _C2LinearRangeAspect()
[all …]
/frameworks/av/media/codec2/tests/vndk/
DC2BufferTest.cpp189 class TestCapacity : public _C2LinearCapacityAspect { in StaticLinearRangeAndCapacityTest()
190 using _C2LinearCapacityAspect::_C2LinearCapacityAspect; in StaticLinearRangeAndCapacityTest()
/frameworks/av/media/codec2/vndk/
DC2Buffer.cpp259 : _C2LinearCapacityAspect(C2LinearCapacity(impl->size()).range(offset, size).size()), in C2ReadView()
264 : _C2LinearCapacityAspect(0u), mImpl(std::make_shared<Impl>(error)), mOffset(0u) { in C2ReadView()