Home
last modified time | relevance | path

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

/hardware/google/av/codec2/include/
DC2Buffer.h339 class _C2LinearCapacityAspect {
356 inline explicit _C2LinearCapacityAspect(size_t capacity) = delete;
359 inline explicit constexpr _C2LinearCapacityAspect(uint32_t capacity) in _C2LinearCapacityAspect() function
362 inline explicit constexpr _C2LinearCapacityAspect(const _C2LinearCapacityAspect *parent) in _C2LinearCapacityAspect() function
375 class _C2LinearRangeAspect : public _C2LinearCapacityAspect {
390 : _C2LinearCapacityAspect(capacity_), in _C2LinearRangeAspect()
398 : _C2LinearCapacityAspect(other.capacity()), in _C2LinearRangeAspect()
404 inline constexpr explicit _C2LinearRangeAspect(const _C2LinearCapacityAspect *parent) in _C2LinearRangeAspect()
405 : _C2LinearCapacityAspect(parent), in _C2LinearRangeAspect()
411 …inline constexpr _C2LinearRangeAspect(const _C2LinearCapacityAspect *parent, size_t offset, size_t… in _C2LinearRangeAspect()
[all …]
/hardware/google/av/codec2/tests/vndk/
DC2BufferTest.cpp188 class TestCapacity : public _C2LinearCapacityAspect { in StaticLinearRangeAndCapacityTest()
189 using _C2LinearCapacityAspect::_C2LinearCapacityAspect; in StaticLinearRangeAndCapacityTest()
/hardware/google/av/codec2/vndk/
DC2Buffer.cpp223 : _C2LinearCapacityAspect(C2LinearCapacity(impl->size()).range(offset, size).size()), in C2ReadView()
228 : _C2LinearCapacityAspect(0u), mImpl(std::make_shared<Impl>(error)), mOffset(0u) { in C2ReadView()