Searched refs:used_ (Results 1 - 8 of 8) sorted by relevance

/external/jsoncpp/src/lib_json/
H A Djson_batchallocator.h64 if ( currentBatch_->used_ == currentBatch_->end_ )
67 while ( currentBatch_ && currentBatch_->used_ == currentBatch_->end_ )
77 AllocatedType *allocated = currentBatch_->used_;
78 currentBatch_->used_ += objectPerAllocation;
95 AllocatedType *used_; member in struct:Json::BatchAllocator::BatchInfo
110 batch->used_ = batch->buffer_;
/external/webp/src/utils/
H A Dbit_writer.h84 int used_; // number of bits used in accumulator member in struct:__anon16978
97 return (bw->cur_ - bw->buf_) + ((bw->used_ + 7) >> 3);
H A Dbit_writer.c255 assert(bw->used_ + n_bits <= 2 * VP8L_WRITER_MAX_BITS);
259 int used = bw->used_;
290 bw->used_ = used + n_bits;
296 if (VP8LBitWriterResize(bw, (bw->used_ + 7) >> 3)) {
297 while (bw->used_ > 0) {
300 bw->used_ -= 8;
302 bw->used_ = 0;
/external/clang/test/SemaCXX/
H A Dwarn-unused-private-field.cpp95 used_ = 42;
107 int used_, unused_; // expected-warning{{private field 'unused_' is not used}} member in class:A
/external/v8/src/compiler/
H A Draw-machine-assembler.cc57 exit_label_.used_ = true;
135 label->used_ = true;
H A Draw-machine-assembler.h30 Label() : block_(NULL), used_(false), bound_(false) {}
31 ~Label() { DCHECK(bound_ || !used_); }
38 : block_(block), used_(false), bound_(false) {}
41 bool used_; member in class:v8::internal::compiler::RawMachineAssembler::Label
H A Dinstruction-selector.h206 BoolVector used_; member in class:v8::internal::compiler::FINAL
H A Dinstruction-selector.cc26 used_(graph()->NodeCount(), false, zone()) {}
177 DCHECK(id < static_cast<NodeId>(used_.size()));
178 return used_[id];
186 DCHECK(id < static_cast<NodeId>(used_.size()));
187 used_[id] = true;

Completed in 402 milliseconds