Home
last modified time | relevance | path

Searched refs:used_ (Results 1 – 11 of 11) sorted by relevance

/external/jsoncpp/src/lib_json/
Djson_batchallocator.h61 if (currentBatch_->used_ == currentBatch_->end_) { in allocate()
63 while (currentBatch_ && currentBatch_->used_ == currentBatch_->end_) in allocate()
73 AllocatedType* allocated = currentBatch_->used_; in allocate()
74 currentBatch_->used_ += objectPerAllocation; in allocate()
90 AllocatedType* used_; member
105 batch->used_ = batch->buffer_; in allocateBatch()
/external/webp/src/utils/
Dbit_writer_utils.c249 dst->used_ = src->used_; in VP8LBitWriterClone()
265 bw->used_ = bw_init->used_; in VP8LBitWriterReset()
291 bw->used_ -= VP8L_WRITER_BITS; in VP8LPutBitsFlushBits()
300 int used = bw->used_; in VP8LPutBitsInternal()
330 bw->used_ = used + n_bits; in VP8LPutBitsInternal()
336 if (VP8LBitWriterResize(bw, (bw->used_ + 7) >> 3)) { in VP8LBitWriterFinish()
337 while (bw->used_ > 0) { in VP8LBitWriterFinish()
340 bw->used_ -= 8; in VP8LBitWriterFinish()
342 bw->used_ = 0; in VP8LBitWriterFinish()
Dbit_writer_utils.h91 int used_; // number of bits used in accumulator member
104 return (bw->cur_ - bw->buf_) + ((bw->used_ + 7) >> 3); in VP8LBitWriterNumBytes()
137 if (bw->used_ >= 32) { in VP8LPutBits()
140 bw->bits_ |= (vp8l_atype_t)bits << bw->used_; in VP8LPutBits()
141 bw->used_ += n_bits; in VP8LPutBits()
/external/tensorflow/tensorflow/compiler/xla/service/
Dname_uniquer.h58 if (used_.insert(id).second) { in RegisterId()
61 while (!used_.insert(next_).second) { in RegisterId()
72 absl::flat_hash_set<int64> used_; variable
/external/clang/test/SemaCXX/
Dwarn-unused-private-field.cpp95 used_ = 42; in A()
107 int used_, unused_; // expected-warning{{private field 'unused_' is not used}} member in A
/external/v8/src/torque/
Dimplementation-visitor.h257 used_(false), in Binding()
267 if (!used_ && !SkipLintCheck()) { in ~Binding()
288 bool Used() const { return used_; } in Used()
289 void SetUsed() { used_ = true; } in SetUsed()
301 bool used_; variable
Ddeclarable.h374 void SetUsed() { used_ = true; } in SetUsed()
375 bool IsUsed() const { return used_; } in IsUsed()
383 used_(false) { in Macro()
390 bool used_;
/external/v8/src/compiler/
Draw-machine-assembler.cc787 label->used_ = true; in Use()
870 if (bound_ == used_) return; in ~RawMachineLabel()
Draw-machine-assembler.h1082 bool used_ = false; variable
/external/v8/src/compiler/backend/
Dinstruction-selector.h697 BoolVector used_; variable
Dinstruction-selector.cc50 used_(node_count, false, zone), in InstructionSelector()
414 DCHECK_LT(id, used_.size()); in IsUsed()
415 return used_[id]; in IsUsed()
421 DCHECK_LT(id, used_.size()); in MarkAsUsed()
422 used_[id] = true; in MarkAsUsed()