Searched refs:c_b (Results 1 – 4 of 4) sorted by relevance
/third_party/openssl/test/ |
D | casttest.c | 52 static unsigned char c_b[16] = { variable 98 || !TEST_mem_eq(out_b, sizeof(c_b), c_b, sizeof(c_b))) in cast_test_iterations()
|
/third_party/boost/libs/test/doc/testing_tools/ |
D | boost_test_collection_comparison.qbk | 52 Given two containers `c_a` and `c_b` that are not C-arrays, 55 BOOST_TEST(c_a op c_b) 61 auto result = c_a op c_b; 84 In more details, let `c_a = (a_1,... a_n)` and `c_b = (b_1,... b_n)` be two sequences of same lengt… 89 BOOST_TEST(c_a op c_b, boost::test_tools::per_element() ); 95 if(c_a.size() == c_b.size()) 107 BOOST_TEST(c_a.size() == c_b.size()); 113 ``BOOST_TEST(c_a == c_b)`` and ``BOOST_TEST(c_a != c_b)`` failing at the same time] 131 [caution the resulting type of "`c_a == c_b`" is an [classref boost::test_tools::assertion_result a… 135 BOOST_TEST(c_a == c_b == 42, boost::test_tools::per_element() ); // does not compile [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | vp9dec.h | 168 VP56RangeCoder *c_b; member
|
D | vp9.c | 815 s->td[i].c_b = rc; in decode_frame_header() 1295 ret = ff_vp56_init_range_decoder(&td->c_b[tile_col], data, tile_size); in decode_tiles() 1298 if (vp56_rac_get_prob_branchy(&td->c_b[tile_col], 128)) { // marker bit in decode_tiles() 1327 td->c = &td->c_b[tile_col]; in decode_tiles() 1421 td->c = &td->c_b[tile_row]; in decode_tiles_mt() 1723 … ret = ff_vp56_init_range_decoder(&s->td[tile_col].c_b[tile_row], data, tile_size); in vp9_decode_frame() 1726 … if (vp56_rac_get_prob_branchy(&s->td[tile_col].c_b[tile_row], 128)) // marker bit in vp9_decode_frame()
|