• Home
  • Raw
  • Download

Lines Matching refs:c8_t

116     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()
127 static_assert(!(c8_t(-0x80) == c8_t(0)), "80 != 0"); in c2_cntr_static_test()
128 static_assert(c8_t(-0x80) != c8_t(0x7f), "80 != 7F"); in c2_cntr_static_test()
129 static_assert(!(c8_t(0x7f) != c8_t(0x7f)), "80 != 7F"); in c2_cntr_static_test()
131 static_assert(c8_t(0x7f) < c8_t(-0x80), "7F < 80"); in c2_cntr_static_test()
132 static_assert(c8_t(0x7f) <= c8_t(-0x80), "7F < 80"); in c2_cntr_static_test()
133 static_assert(c8_t(0x7e) < c8_t(0x7f), "7E < 7F"); in c2_cntr_static_test()
134 static_assert(c8_t(0x7e) <= c8_t(0x7f), "7E < 7F"); in c2_cntr_static_test()
135 static_assert(!(c8_t(-0x40) < c8_t(0x40)), "-40 !< 40"); in c2_cntr_static_test()
136 static_assert(!(c8_t(-0x40) <= c8_t(0x40)), "-40 !<= 40"); in c2_cntr_static_test()
137 static_assert(!(c8_t(-0x40) < c8_t(-0x40)), "-40 !< -40"); in c2_cntr_static_test()
138 static_assert(c8_t(-0x40) <= c8_t(-0x40), "-40 <= -40"); in c2_cntr_static_test()