Searched refs:status_ (Results 1 - 25 of 183) sorted by last modified time

12345678

/external/webp/src/dec/
H A Dframe.c360 assert(worker->status_ == OK);
397 return dec->status_;
H A Didec.c398 const VP8StatusCode status = dec->status_;
408 dec->status_ = WebPAllocateDecBuffer(io->width, io->height, params->options,
410 if (dec->status_ != VP8_STATUS_OK) {
411 return IDecError(idec, dec->status_);
423 return IDecError(idec, dec->status_);
431 return IDecError(idec, dec->status_);
507 return ErrorStatusLossless(idec, dec->status_);
510 dec->status_ = WebPAllocateDecBuffer(io->width, io->height, params->options,
512 if (dec->status_ != VP8_STATUS_OK) {
513 return IDecError(idec, dec->status_);
[all...]
H A Dvp8.c33 dec->status_ = VP8_STATUS_OK;
60 return dec->status_;
79 // from VP8ProcessRow/FinishRow. This avoids setting 'dec->status_' to
82 if (dec->status_ == VP8_STATUS_OK) {
83 dec->status_ = error;
H A Dvp8i.h221 VP8StatusCode status_; member in struct:VP8Decoder
223 const char* error_msg_; // set when status_ is not OK.
H A Dvp8l.c194 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
202 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
225 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
271 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
287 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
313 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
347 dec->status_ = VP8_STATUS_OUT_OF_MEMORY;
400 dec->status_ = VP8_STATUS_OUT_OF_MEMORY;
813 dec->status_ = br->eos_ ? VP8_STATUS_SUSPENDED
930 dec->status_
[all...]
H A Dvp8li.h57 VP8StatusCode status_; member in struct:VP8LDecoder
116 // this function. Returns false in case of error, with updated dec->status_.
120 // Preserves the dec->status_ value.
H A Dwebp.c484 status = dec->status_; // An error occurred. Grab error status.
495 status = dec->status_;
506 status = dec->status_; // An error occurred. Grab error status.
513 status = dec->status_;
/external/webp/src/utils/
H A Dthread.c163 while (worker->status_ == OK) { // wait in idling mode
166 if (worker->status_ == WORK) {
168 worker->status_ = OK;
169 } else if (worker->status_ == NOT_OK) { // finish the worker
183 // Checking status_ without acquiring the lock first would result in a data
188 if (worker->status_ >= OK) {
190 while (worker->status_ != OK) {
195 worker->status_ = new_status;
208 worker->status_ = NOT_OK;
215 assert(worker->status_ <
[all...]
H A Dthread.h44 WebPWorkerStatus status_; member in struct:__anon33403
/external/stressapptest/src/
H A Dworker.cc202 // Acquire a read lock on status_rwlock_ while (status_ != PAUSE).
205 if (status_ != PAUSE)
237 status_ = false;
351 status_ = false;
370 status_ = false;
570 status_ = result;
572 thread_num_, status_, pages_copied_);
1471 status_ = result;
1473 thread_num_, status_, pages_copied_);
1536 status_
[all...]
H A Dworker.h82 WorkerStatus() : num_workers_(0), status_(RUN) {}
172 Status status = status_;
180 Status prev_status = status_;
181 status_ = status;
190 Status status_; member in class:WorkerStatus
193 // Guaranteed to not be in use when (status_ != PAUSE).
256 bool GetStatus() {return status_;}
377 volatile bool status_; // Error status. member in class:WorkerThread
/external/regex-re2/re2/
H A Dparse.cc55 // false, it has set fields in *status_, and the parser
154 RegexpStatus* status_; member in class:re2::Regexp::ParseState
170 status_(status), stacktop_(NULL), ncap_(0) {
450 status_->set_code(kRegexpRepeatArgument);
451 status_->set_error_arg(s);
472 status_->set_code(kRegexpRepeatSize);
473 status_->set_error_arg(s);
477 status_->set_code(kRegexpRepeatArgument);
478 status_->set_error_arg(s);
600 status_
[all...]
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc315 status_(-1),
330 int status() const { return status_; }
331 void set_status(int status) { status_ = status; }
355 int status_; member in class:testing::internal::DeathTestImpl
/external/protobuf/gtest/test/
H A Dgtest-death-test_test.cc748 int status_; member in class:MockDeathTestFactory
776 parent_(parent), role_(role), status_(status), passed_(passed) {
787 return status_;
799 const int status_; member in class:MockDeathTest
808 status_(0),
823 status_ = status;
843 *test = new MockDeathTest(this, role_, status_, passed_);
/external/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc328 status_(-1),
343 int status() const { return status_; }
344 void set_status(int a_status) { status_ = a_status; }
368 int status_; member in class:testing::internal::DeathTestImpl
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc331 status_(-1),
346 int status() const { return status_; }
347 void set_status(int a_status) { status_ = a_status; }
371 int status_; member in class:testing::internal::DeathTestImpl
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc6862 status_(-1),
6877 int status() const { return status_; }
6878 void set_status(int a_status) { status_ = a_status; }
6902 int status_;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_thread.c34 while (worker->status_ == OK) { // wait in idling mode
37 if (worker->status_ == WORK) {
39 worker->status_ = OK;
40 } else if (worker->status_ == NOT_OK) { // finish the worker
54 if (worker->status_ < OK) return;
58 while (worker->status_ != OK) {
63 worker->status_ = new_status;
75 worker->status_ = NOT_OK;
82 assert(worker->status_ <= OK);
89 if (worker->status_ < O
[all...]
H A Dvp9_thread.h173 VP9WorkerStatus status_; member in struct:__anon24931
/external/gtest/src/
H A Dgtest-death-test.cc368 status_(-1),
383 int status() const { return status_; }
384 void set_status(int a_status) { status_ = a_status; }
408 int status_; member in class:testing::internal::DeathTestImpl
/external/gtest/test/
H A Dgtest-death-test_test.cc845 int status_; member in class:MockDeathTestFactory
873 parent_(parent), role_(role), status_(status), passed_(passed) {
884 return status_;
897 const int status_; member in class:MockDeathTest
906 status_(0),
921 status_ = status;
941 *test = new MockDeathTest(this, role_, status_, passed_);
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc404 status_ = BUILDING;
421 status_ = DONE;
H A Dlithium-codegen-arm.cc48 status_ = GENERATING;
406 if (!is_aborted()) status_ = DONE;
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.cc564 status_ = BUILDING;
581 status_ = DONE;
H A Dlithium-codegen-arm64.cc589 status_ = GENERATING;
907 if (!is_aborted()) status_ = DONE;

Completed in 434 milliseconds

12345678