Home
last modified time | relevance | path

Searched refs:run_ (Results 1 – 12 of 12) sorted by relevance

/external/webp/src/utils/
Dbit_writer_utils.c63 if (!BitWriterResize(bw, bw->run_ + 1)) { in Flush()
69 if (bw->run_ > 0) { in Flush()
71 for (; bw->run_ > 0; --bw->run_) bw->buf_[pos++] = value; in Flush()
76 bw->run_++; // delay writing of bytes 0xff, pending eventual carry. in Flush()
165 bw->run_ = 0; in VP8BitWriterInit()
Dbit_writer_utils.h30 int run_; // number of outstanding bits member
58 return (bw->pos_ + bw->run_) * 8 + nb_bits; in VP8BitWriterPos()
/external/tensorflow/tensorflow/core/summary/
Dsummary_db_writer.cc884 run_{&meta_} {
891 Status s = run_.Finish(db_); in ~SummaryDbWriter()
986 run_.Append(db_, tag_id, step, now, computed_time, t), in Write()
1058 return run_.Append(db_, tag_id, e->step(), now, e->wall_time(), t); in MigrateTensor()
1071 return run_.Append(db_, tag_id, e->step(), now, e->wall_time(), t); in MigrateScalar()
1102 return run_.Append(db_, tag_id, e->step(), now, e->wall_time(), t); in MigrateHistogram()
1116 return run_.Append(db_, tag_id, e->step(), now, e->wall_time(), t); in MigrateImage()
1129 return run_.Append(db_, tag_id, e->step(), now, e->wall_time(), t); in MigrateAudio()
1136 RunWriter run_; member in tensorflow::__anon3d888a760111::SummaryDbWriter
/external/perf_data_converter/src/
DMakefile158 UNIT_TEST_RUN_BINARIES = $(TEST_BINARIES:%=run_%)
159 $(UNIT_TEST_RUN_BINARIES): run_%: %
/external/tensorflow/tensorflow/compiler/xla/service/
Dheap_simulator.cc570 run_.emplace_back(Op{buffer, size}); in Alloc()
576 run_.emplace_back(Op{buffer, size}); in Free()
593 CHECK(run_.empty()); in CallAndDrainRun()
598 absl::c_sort(run_, [](const Op& a, const Op& b) { in CallAndDrainRun()
604 for (const Op& op : run_) { in CallAndDrainRun()
611 run_.clear(); in CallAndDrainRun()
Dheap_simulator.h297 std::vector<Op> run_; variable
/external/libcxx/utils/google-benchmark/test/
DAssemblyTests.cmake38 add_test(NAME run_${name}_${prefix}
/external/google-benchmark/test/
DAssemblyTests.cmake38 add_test(NAME run_${name}_${prefix}
/external/libevent/test/
Dregress.gen.h129 enum run_ { enum
/external/autotest/docs/
Duser-doc.md145 - `run_*()` - This is is the main part that performs all testing and is
157 initialization even during `run_*()` step, so it should be a noop on reentry
160 Unlike `run_*()` functions, `setup()` gets called both during the prepare phase
/external/v8/src/
Dapi.cc8971 run_(type == MicrotasksScope::kRunMicrotasks) { in MicrotasksScope()
8973 if (run_) handle_scope_implementer->IncrementMicrotasksScopeDepth(); in MicrotasksScope()
8975 if (!run_) handle_scope_implementer->IncrementDebugMicrotasksScopeDepth(); in MicrotasksScope()
8982 if (run_) { in ~MicrotasksScope()
8990 if (!run_) handle_scope_implementer->DecrementDebugMicrotasksScopeDepth(); in ~MicrotasksScope()
/external/v8/include/
Dv8.h6685 bool run_;