Home
last modified time | relevance | path

Searched refs:exit_ (Results 1 – 7 of 7) sorted by relevance

/external/drm_hwcomposer/utils/
DWorker.cpp25 : name_(name), priority_(priority), exit_(false), initialized_(false) { in Worker()
40 exit_ = false; in InitWorker()
47 exit_ = true; in Exit()
DWorker.h64 return exit_; in should_exit()
77 bool exit_; variable
/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow.py213 name, check_shape, init, entry, exit_, shape_invariant): argument
216 if exit_ is None:
223 if isinstance(exit_, (bool, int, float, str, np.ndarray)):
224 exit_ = ops.convert_to_tensor_v2(exit_)
227 not tensor_util.is_tf_type(exit_)):
232 not hasattr(exit_, 'dtype')):
235 not hasattr(exit_, 'shape')):
238 if entry.dtype != exit_.dtype:
244 exit_.dtype.name,
247 exit_shape = exit_.shape
[all …]
Dcontrol_flow_deprecated_py2.py138 name, check_shape, init, entry, exit_, shape_invariant): argument
144 if isinstance(exit_, (bool, int, float, str)):
145 exit_ = ops.convert_to_tensor_v2(exit_)
148 not tensor_util.is_tf_type(exit_)):
153 not hasattr(exit_, 'dtype')):
156 not hasattr(exit_, 'shape')):
159 if entry.dtype != exit_.dtype:
166 exit_.dtype.name,
169 exit_shape = exit_.shape
205 for name, init, entry, exit_, invariant in named_vars:
[all …]
/external/libchrome/base/debug/
Dactivity_tracker_unittest.cc400 exit_(false), in SimpleActivityThread()
414 while (!exit_.load(std::memory_order_relaxed)) in Run()
423 exit_.store(true, std::memory_order_relaxed); in Exit()
437 std::atomic<bool> exit_; member in base::debug::__anon91480e470311::SimpleActivityThread
Dactivity_analyzer_unittest.cc119 exit_(false), in SimpleActivityThread()
133 while (!exit_.load(std::memory_order_relaxed)) in Run()
142 exit_.store(true, std::memory_order_relaxed); in Exit()
156 std::atomic<bool> exit_; member in base::debug::__anond0bf42010211::SimpleActivityThread
/external/tensorflow/tensorflow/python/autograph/pyct/
Dcfg.py500 for exit_ in self.exits[section_id]:
501 self.leaves |= self._connect_jump_to_finally_sections(exit_)