Home
last modified time | relevance | path

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

/external/libchrome/mojo/public/cpp/bindings/tests/
Dsync_method_unittest.cc695 bool first_call = true; in TYPED_TEST() local
696 impl.set_echo_handler([&first_call, &ptr, &result_value]( in TYPED_TEST()
698 if (first_call) { in TYPED_TEST()
699 first_call = false; in TYPED_TEST()
719 bool first_call = true; in SEQUENCED_TASK_RUNNER_TYPED_TEST() local
723 [&first_call, &ptr, &result_value]( in SEQUENCED_TASK_RUNNER_TYPED_TEST()
725 if (first_call) { in SEQUENCED_TASK_RUNNER_TYPED_TEST()
726 first_call = false; in SEQUENCED_TASK_RUNNER_TYPED_TEST()
751 bool first_call = true; in TYPED_TEST() local
752 impl.set_echo_handler([&first_call, &ptr, &result_value]( in TYPED_TEST()
[all …]
/external/u-boot/env/
Dcallback.c37 static int first_call = 1; variable
52 if (first_call) { in env_callback_init()
54 first_call = 0; in env_callback_init()
Dflags.c413 static int first_call = 1; variable
427 if (first_call) { in env_flags_init()
429 first_call = 0; in env_flags_init()
/external/boringssl/src/crypto/fipsmodule/rand/
Drand.c314 int first_call = 1; in RAND_bytes_with_additional_data() local
322 first_call ? sizeof(additional_data) : 0)) { in RAND_bytes_with_additional_data()
331 first_call = 0; in RAND_bytes_with_additional_data()
/external/tensorflow/tensorflow/core/framework/
Dop.cc81 bool first_call = false; in LookUpSlow() local
85 first_call = MustCallDeferred(); in LookUpSlow()
95 if (first_call) { in LookUpSlow()
/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/tensorflow/tensorflow/core/kernels/data/
Dshuffle_dataset_op.cc93 bool first_call = false; in GetNextInternal() local
95 first_call = true; in GetNextInternal()
114 first_call = false; in GetNextInternal()
117 if (first_call && this->dataset()->count_ == -1) { in GetNextInternal()
/external/tensorflow/tensorflow/contrib/grid_rnn/python/ops/
Dgrid_rnn_cell.py612 first_call): argument
646 if conf.tied and not (first_call and i == dim_indices[0]):
665 if conf.tied and not (first_call and i == dim_indices[0]):
/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/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_texture.c798 static boolean first_call = TRUE; in llvmpipe_init_screen_resource_funcs() local
799 if (first_call) { in llvmpipe_init_screen_resource_funcs()
802 first_call = FALSE; in llvmpipe_init_screen_resource_funcs()
/external/u-boot/net/
Dnet.c375 static int first_call = 1; in net_init() local
377 if (first_call) { in net_init()
393 first_call = 0; in net_init()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_format.c1577 static boolean first_call = TRUE; in check_format_tables() local
1579 if (first_call) { in check_format_tables()
1592 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: