Home
last modified time | relevance | path

Searched refs:first_call (Results 1 – 11 of 11) sorted by relevance

/external/libmojo/mojo/public/cpp/bindings/tests/
Dsync_method_unittest.cc426 bool first_call = true; in TYPED_TEST() local
427 impl.set_echo_handler([&first_call, &ptr, &result_value]( in TYPED_TEST()
429 if (first_call) { in TYPED_TEST()
430 first_call = false; in TYPED_TEST()
452 bool first_call = true; in TYPED_TEST() local
453 impl.set_echo_handler([&first_call, &ptr, &result_value]( in TYPED_TEST()
456 if (first_call) { in TYPED_TEST()
457 first_call = false; in TYPED_TEST()
/external/boringssl/src/crypto/fipsmodule/rand/
Drand.c323 int first_call = 1; in RAND_bytes_with_additional_data() local
331 first_call ? sizeof(additional_data) : 0)) { in RAND_bytes_with_additional_data()
338 first_call = 0; in RAND_bytes_with_additional_data()
/external/tensorflow/tensorflow/core/framework/
Dop.cc65 bool first_call = false; in LookUp() local
69 first_call = MustCallDeferred(); in LookUp()
79 if (first_call) { in LookUp()
/external/tensorflow/tensorflow/core/kernels/data/
Drepeat_dataset_op.cc178 bool first_call = false; in GetNextInternal() local
180 first_call = true; in GetNextInternal()
189 if (first_call) { in GetNextInternal()
Dshuffle_dataset_op.cc85 bool first_call = false; in GetNextInternal() local
87 first_call = true; in GetNextInternal()
103 first_call = false; in GetNextInternal()
106 if (first_call && dataset()->count_ == -1) { in GetNextInternal()
/external/ltp/testcases/kernel/security/prot_hsymlinks/
Dprot_hsymlinks.c271 static int first_call = 1; in cleanup() local
272 if (!first_call) in cleanup()
274 first_call = 0; in cleanup()
/external/scapy/scapy/layers/tls/
Dextensions.py89 lvl="", label_lvl="", first_call=True): argument
122 label_lvl=label_lvl, first_call=False)
124 if first_call and not dump:
/external/tensorflow/tensorflow/contrib/grid_rnn/python/ops/
Dgrid_rnn_cell.py609 first_call): argument
643 if conf.tied and not (first_call and i == dim_indices[0]):
662 if conf.tied and not (first_call and i == dim_indices[0]):
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_texture.c795 static boolean first_call = TRUE; in llvmpipe_init_screen_resource_funcs() local
796 if (first_call) { in llvmpipe_init_screen_resource_funcs()
799 first_call = FALSE; in llvmpipe_init_screen_resource_funcs()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_format.c1832 static boolean first_call = TRUE; in check_format_tables() local
1834 if (first_call) { in check_format_tables()
1847 first_call = FALSE; in check_format_tables()
/external/scapy/scapy/
Dpacket.py980 def _show_or_dump(self, dump=False, indent=3, lvl="", label_lvl="", first_call=True): argument
1016 …+= fvalue._show_or_dump(dump=dump, indent=indent, label_lvl=label_lvl+lvl+" |", first_call=False)
1029 …=dump, indent=indent, lvl=lvl+(" "*indent*self.show_indent), label_lvl=label_lvl, first_call=False)
1031 if first_call and not dump: