Home
last modified time | relevance | path

Searched refs:exit_ (Results 1 – 9 of 9) 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()
/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow.py142 name, check_shape, init, entry, exit_, shape_invariant): argument
148 if isinstance(exit_, (bool, int, float, str)):
149 exit_ = ops.convert_to_tensor_v2(exit_)
152 not tensor_util.is_tensor(exit_)):
157 not hasattr(exit_, 'dtype')):
160 not hasattr(exit_, 'shape')):
163 if entry.dtype != exit_.dtype:
170 exit_.dtype.name,
173 exit_shape = exit_.shape
216 exit_ = iter_exit_vars[i]
[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_tensor(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/drm_hwcomposer/include/
Dworker.h64 return exit_; in should_exit()
77 bool exit_; variable
/external/v8/src/interpreter/
Dcontrol-flow-builders.cc124 builder()->Jump(&exit_); in EndTry()
133 void TryCatchBuilder::EndCatch() { builder()->Bind(&exit_); } in EndCatch()
Dcontrol-flow-builders.h204 BytecodeLabel exit_; variable
/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::__anon169bb6eb0311::SimpleActivityThread
/external/v8/src/compiler/backend/
Dcode-generator-impl.h247 Label* exit() { return &exit_; } in exit()
254 Label exit_; variable
/external/tensorflow/tensorflow/python/autograph/pyct/
Dcfg.py471 for exit_ in self.exits[section_id]:
472 self.leaves |= self._connect_jump_to_finally_sections(exit_)