Searched refs:j_count (Results 1 – 1 of 1) sorted by relevance
57 for( int j_count=0; j_count<100; ++j_count ) { in CheckIteratorComparison() local58 REQUIRE( ((i==j)==(i_count==j_count)) ); in CheckIteratorComparison()59 REQUIRE( ((i!=j)==(i_count!=j_count)) ); in CheckIteratorComparison()60 REQUIRE( ((i-j)==(i_count-j_count)) ); in CheckIteratorComparison()61 REQUIRE( ((i<j)==(i_count<j_count)) ); in CheckIteratorComparison()62 REQUIRE( ((i>j)==(i_count>j_count)) ); in CheckIteratorComparison()63 REQUIRE( ((i<=j)==(i_count<=j_count)) ); in CheckIteratorComparison()64 REQUIRE( ((i>=j)==(i_count>=j_count)) ); in CheckIteratorComparison()