Searched refs:first_call (Results 1 – 11 of 11) sorted by relevance
/external/libmojo/mojo/public/cpp/bindings/tests/ |
D | sync_method_unittest.cc | 426 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/ |
D | rand.c | 323 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/ |
D | op.cc | 65 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/ |
D | repeat_dataset_op.cc | 178 bool first_call = false; in GetNextInternal() local 180 first_call = true; in GetNextInternal() 189 if (first_call) { in GetNextInternal()
|
D | shuffle_dataset_op.cc | 85 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/ |
D | prot_hsymlinks.c | 271 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/ |
D | extensions.py | 89 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/ |
D | grid_rnn_cell.py | 609 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/ |
D | lp_texture.c | 795 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/ |
D | svga_format.c | 1832 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/ |
D | packet.py | 980 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:
|