Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/fipsmodule/modes/asm/
Dghash-ssse3-x86.pl84 my $call_counter = 0;
92 $call_counter++;
102 &set_label("loop_row_$call_counter");
137 &jnz(&label("loop_row_$call_counter"));
Dghash-ssse3-x86_64.pl138 my $call_counter = 0;
146 $call_counter++;
157 .Loop_row_$call_counter:
192 jnz .Loop_row_$call_counter
/external/tensorflow/tensorflow/contrib/learn/python/learn/
Dmonitors_test.py755 self.call_counter = collections.Counter()
761 self.call_counter['begin'] += 1
764 self.call_counter['end'] += 1
767 self.call_counter['step_begin'] += 1
772 self.call_counter['step_end'] += 1
778 self.call_counter['post_step'] += 1
795 self.assertEqual(mon.call_counter['begin'], 1)
808 self.assertEqual(mon.call_counter['step_end'], 1)
809 self.assertEqual(mon.call_counter['step_begin'], 1)
810 self.assertEqual(mon.call_counter['post_step'], 1)
[all …]
/external/tensorflow/tensorflow/python/training/
Dmonitored_session_test.py246 self.call_counter = collections.Counter()
251 self.call_counter['begin'] += 1
254 self.call_counter['after_create_session'] += 1
257 self.call_counter['before_run'] += 1
262 self.call_counter['after_run'] += 1
268 self.call_counter['end'] += 1
380 self.assertEqual(1, fake_hook.call_counter['begin'])
1258 self.assertEqual(hook.call_counter['begin'], 0)
1259 self.assertEqual(hook.call_counter['after_create_session'], 0)
1260 self.assertEqual(hook.call_counter['before_run'], 1)
[all …]
/external/protobuf/src/google/protobuf/
Ddescriptor_unittest.cc6184 CallCountingDatabase call_counter(&database_); in TEST_F() local
6185 DescriptorPool pool(&call_counter); in TEST_F()
6196 EXPECT_NE(0, call_counter.call_count_); in TEST_F()
6197 call_counter.Clear(); in TEST_F()
6222 EXPECT_EQ(0, call_counter.call_count_); in TEST_F()
6339 CallCountingDatabase call_counter(&database_); in TEST_F() local
6340 DescriptorPool pool(&call_counter); in TEST_F()
6349 EXPECT_NE(0, call_counter.call_count_); in TEST_F()
6350 call_counter.Clear(); in TEST_F()
6360 EXPECT_EQ(0, call_counter.call_count_); in TEST_F()