Home
last modified time | relevance | path

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

/hardware/google/av/codec2/tests/
DC2_test.cpp116 using c8_t = c2_cntr_t<uint8_t>; in c2_cntr_static_test() typedef
117 static_assert(c8_t(-0x80) > c8_t(0x7f), "80 > 7F"); in c2_cntr_static_test()
118 static_assert(c8_t(-0x80) >= c8_t(0x7f), "80 >= 7F"); in c2_cntr_static_test()
119 static_assert(c8_t(0x7f) > c8_t(0x7e), "7F > 7E"); in c2_cntr_static_test()
120 static_assert(c8_t(0x7f) >= c8_t(0x7e), "7F >= 7E"); in c2_cntr_static_test()
121 static_assert(!(c8_t(-0x80) > c8_t(0)), "80 !> 00"); in c2_cntr_static_test()
122 static_assert(!(c8_t(-0x80) >= c8_t(0)), "80 !>= 00"); in c2_cntr_static_test()
123 static_assert(!(c8_t(-0x80) > c8_t(-0x80)), "80 !> 80"); in c2_cntr_static_test()
124 static_assert(c8_t(-0x80) >= c8_t(-0x80), "80 >= 80"); in c2_cntr_static_test()
126 static_assert(c8_t(-0x80) == c8_t(0x80), "80 == 80"); in c2_cntr_static_test()
[all …]