Home
last modified time | relevance | path

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

/third_party/boost/libs/ptr_container/test/
Diterator_test.cpp22 ptr_vector<int>::const_iterator const_i = vec.begin(); in test_iterator() local
24 BOOST_CHECK( mutable_i == const_i ); in test_iterator()
25 BOOST_CHECK( ! (mutable_i != const_i ) ); in test_iterator()
26 BOOST_CHECK( const_i == mutable_i ); in test_iterator()
27 BOOST_CHECK( ! ( const_i != mutable_i ) ); in test_iterator()
29 BOOST_CHECK( !( mutable_i < const_i ) ); in test_iterator()
30 BOOST_CHECK( mutable_i <= const_i ); in test_iterator()
31 BOOST_CHECK( ! ( mutable_i > const_i ) ); in test_iterator()
32 BOOST_CHECK( mutable_i >= const_i ); in test_iterator()
33 BOOST_CHECK( !( const_i < mutable_i ) ); in test_iterator()
[all …]
/third_party/mesa3d/src/gallium/frontends/nine/
Dnine_shader.h244 int const_i[NINE_MAX_CONST_I][4]; member
254 int *const_i, in nine_shader_constant_combination_key() argument
264 assert(const_i); in nine_shader_constant_combination_key()
272 match &= !memcmp(const_i + 4*i, current->const_i[i], sizeof(current->const_i[0])); in nine_shader_constant_combination_key()
289 memcpy(current->const_i, const_i, sizeof(current->const_i)); in nine_shader_constant_combination_key()
Dnine_shader.c3684 info->add_constants_defs.c_combination->const_i[i][0], in tx_ctor()
3685 info->add_constants_defs.c_combination->const_i[i][1], in tx_ctor()
3686 info->add_constants_defs.c_combination->const_i[i][2], in tx_ctor()
3687 info->add_constants_defs.c_combination->const_i[i][3]); in tx_ctor()
3688 tx_set_lconsti(tx, i, info->add_constants_defs.c_combination->const_i[i]); in tx_ctor()