HomeSort by relevance Sort by last modified time
    Searched refs:Checkpoint (Results 1 - 14 of 14) sorted by null

  /external/libcxx/test/support/
assert_checkpoint.h 8 struct Checkpoint {
14 Checkpoint() : file(nullptr), func(nullptr), line(-1), msg(nullptr) {}
15 Checkpoint(const char* xfile, const char* xfunc, int xline, const char* xmsg)
22 s << "NO CHECKPOINT\n";
25 s << file << ":" << line << " " << func << ": Checkpoint";
32 inline Checkpoint& globalCheckpoint() {
33 static Checkpoint C;
38 globalCheckpoint() = Checkpoint();
47 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint(__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE__, msg)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
assert_checkpoint.h 8 struct Checkpoint {
14 Checkpoint() : file(nullptr), func(nullptr), line(-1), msg(nullptr) {}
15 Checkpoint(const char* xfile, const char* xfunc, int xline, const char* xmsg)
22 s << "NO CHECKPOINT\n";
25 s << file << ":" << line << " " << func << ": Checkpoint";
32 inline Checkpoint& globalCheckpoint() {
33 static Checkpoint C;
38 globalCheckpoint() = Checkpoint();
47 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint(__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE__, msg)
    [all...]
  /external/v8/src/compiler/
liveness-analyzer.h 105 void Checkpoint(Node* node) { entries_.push_back(Entry(node)); }
common-operator.h 359 const Operator* Checkpoint();
bytecode-graph-builder.cc 58 // Preserve a checkpoint of the environment for the IR graph. Any
60 Node* Checkpoint(BailoutId bytecode_offset, OutputFrameStateCombine combine,
332 Checkpoint(loop_id, OutputFrameStateCombine::Ignore(), false, nullptr);
333 Node* checkpoint = local
334 graph()->NewNode(common()->Checkpoint(), frame_state, entry, entry);
335 UpdateEffectDependency(checkpoint);
339 Node* effect = checkpoint;
422 Node* BytecodeGraphBuilder::Environment::Checkpoint(
577 // Create an explicit checkpoint node for before the operation. This only
578 // needs to happen if we aren't effect-dominated by a {Checkpoint} already
    [all...]
ast-graph-builder.cc 682 Node* AstGraphBuilder::Environment::Checkpoint(BailoutId ast_id,
704 // If the owning node has an exception, register the checkpoint to the
705 // predecessor so that the checkpoint is used for both the normal and the
709 liveness_block()->GetPredecessor()->Checkpoint(result);
711 liveness_block()->Checkpoint(result);
3042 Node* checkpoint = graph->NewNode(common()->Checkpoint(), frame_state, local
    [all...]
ast-graph-builder.h 232 // by dedicated {Checkpoint} nodes that are wired into the effect chain.
479 // Preserve a checkpoint of the environment for the IR graph. Any
481 Node* Checkpoint(BailoutId ast_id, OutputFrameStateCombine combine =
opcodes.h 56 V(Checkpoint) \
common-operator.cc 364 V(Checkpoint, Operator::kKontrol, 0, 1, 1, 0, 1, 0) \
    [all...]
js-native-context-specialization.cc     [all...]
  /external/tensorflow/tensorflow/contrib/eager/python/
checkpointable_utils_test.py 83 # checkpoint compatibility with variable.name based saving.
136 class Checkpoint(checkpointable.Checkpointable):
140 super(Checkpoint, self).__init__()
222 # The .name attribute may be globally influenced, but the checkpoint name
227 # checkpoint name will be the same.
272 # go in the checkpoint, since it is never depended on.
276 root_checkpointable = Checkpoint(
380 root_checkpointable = Checkpoint(optimizer=optimizer, network=network)
410 on_create_root = Checkpoint(
441 root = Checkpoint(
    [all...]
  /external/tensorflow/tensorflow/core/profiler/g3doc/
command_line.md 8 * [Profile Checkpoint Value](#profile-checkpoint-value)
55 <b>--checkpoint_path:</b> TensorFlow checkpoint (optional).
88 # --checkpoint_path contains the model checkpoint data.
111 # Additionally profile checkpoint statistics and values.
113 # checkpoint tensors.
150 # supported select fields. Availability depends on --[run_meta|checkpoint|op_log]_path.
207 #### Profile Checkpoint Value
  /external/v8/src/parsing/
parser-base.h 290 class Checkpoint;
491 friend class Checkpoint;
540 class Checkpoint BASE_EMBEDDED {
542 explicit Checkpoint(ParserBase* parser) {
    [all...]
parser.cc     [all...]

Completed in 317 milliseconds