Home
last modified time | relevance | path

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

/external/webp/src/utils/
Dbit_writer.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()
164 bw->run_ = 0; in VP8BitWriterInit()
Dbit_writer.h30 int run_; // number of outstanding bits member
57 return (uint64_t)(bw->pos_ + bw->run_) * 8 + 8 + bw->nb_bits_; in VP8BitWriterPos()
/external/v8/test/cctest/
Dtest-log.cc139 run_(true) {
151 void Stop() { run_ = false; }
156 bool IsRunning() { return run_; }
168 bool run_;