Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/core/include/
DC2.h190 class C2_HIDE c2_cntr_t; variable
207 inline static constexpr T get(const c2_cntr_t<U, void> &value) { in get()
236 class C2_HIDE c2_cntr_t {
249 inline constexpr c2_cntr_t() : mValue(T(0)) {} in c2_cntr_t() function
255 inline constexpr c2_cntr_t(const U &value) : mValue(compat::get(value)) {} in c2_cntr_t() function
292 inline constexpr operator c2_cntr_t<U>() {
293 return c2_cntr_t<U>(mValue);
302 attrib inline c2_cntr_t<T>& operator op_assign(const U &value) { \
308 attrib inline constexpr c2_cntr_t<T> operator op(const U &value) const { \
309 return c2_cntr_t<T>(mValue op compat::get(value)); \
[all …]
/frameworks/av/media/codec2/tests/
DC2_test.cpp116 using c8_t = c2_cntr_t<uint8_t>; in c2_cntr_static_test()
/frameworks/av/media/codec2/vndk/util/
DC2Debug.cpp160 std::ostream& operator<<(std::ostream &os, const c2_cntr_t<T> &v) { in operator <<()