HomeSort by relevance Sort by last modified time
    Searched refs:refs_ (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/leveldatabase/src/db/
memtable.h 27 void Ref() { ++refs_; }
31 --refs_;
32 assert(refs_ >= 0);
33 if (refs_ <= 0) {
80 int refs_; member in class:leveldb::MemTable
memtable.cc 23 refs_(0),
28 assert(refs_ == 0);
version_set.h 135 int refs_; // Number of live refs to this version member in class:leveldb::Version
151 : vset_(vset), next_(this), prev_(this), refs_(0),
  /external/chromium_org/third_party/libwebp/enc/
vp8li.h 51 struct VP8LBackwardRefs refs_[2]; // Backward Refs array corresponding to member in struct:__anon17917
backward_references.c 85 refs->free_blocks_ = refs->refs_;
86 refs->tail_ = &refs->refs_;
88 refs->refs_ = NULL;
104 refs->tail_ = &refs->refs_;
111 c.cur_block_ = refs->refs_;
112 if (refs->refs_ != NULL) {
164 const PixOrCopyBlock* b = src->refs_;
    [all...]
vp8l.c 178 VP8LBackwardRefsInit(&enc->refs_[0], refs_block_size);
179 VP8LBackwardRefsInit(&enc->refs_[1], refs_block_size);
754 (VP8LBackwardRefs*)enc->refs_, // cast const away
775 (VP8LBackwardRefs*)enc->refs_, // cast const away
    [all...]
backward_references.h 150 PixOrCopyBlock* refs_; // list of currently used blocks member in struct:VP8LBackwardRefs
  /external/webp/src/enc/
vp8li.h 51 struct VP8LBackwardRefs refs_[2]; // Backward Refs array corresponding to member in struct:__anon37968
backward_references.c 85 refs->free_blocks_ = refs->refs_;
86 refs->tail_ = &refs->refs_;
88 refs->refs_ = NULL;
104 refs->tail_ = &refs->refs_;
111 c.cur_block_ = refs->refs_;
112 if (refs->refs_ != NULL) {
164 const PixOrCopyBlock* b = src->refs_;
    [all...]
vp8l.c 178 VP8LBackwardRefsInit(&enc->refs_[0], refs_block_size);
179 VP8LBackwardRefsInit(&enc->refs_[1], refs_block_size);
754 (VP8LBackwardRefs*)enc->refs_, // cast const away
775 (VP8LBackwardRefs*)enc->refs_, // cast const away
    [all...]
backward_references.h 150 PixOrCopyBlock* refs_; // list of currently used blocks member in struct:VP8LBackwardRefs
  /external/chromium_org/courgette/
adjustment_method.cc 47 uint32 refs_; // Number of times this Label is referenced. member in class:courgette::LabelInfo
61 : label_(NULL), is_model_(false), debug_index_(0), refs_(0),
86 base::StringAppendF(&s, " #%u", info->refs_);
372 if (m_info_next->refs_ != p_info_next->refs_) {
381 if (p_info_next->refs_ == m_info_next->refs_ &&
382 p_info_next->refs_ == 1) {
411 if (m_info_prev->refs_ != p_info_prev->refs_) {
    [all...]
  /external/chromium_org/v8/test/cctest/
test-threads.cc 131 refs_(refs),
139 CHECK(!(*refs_)[i].Equals(thread_id));
142 (*refs_)[thread_no_] = thread_id;
150 i::List<i::ThreadId>* refs_; member in class:ThreadIdValidationThread
  /external/chromium_org/v8/test/mjsunit/es6/
generators-mirror.js 17 this.refs_ = [];
19 this.refs_[tmp[i].handle] = tmp[i];
24 return this.refs_[handle];
mirror-promises.js 10 this.refs_ = [];
12 this.refs_[tmp[i].handle] = tmp[i];
17 return this.refs_[handle];
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv.cc 24 FileState() : refs_(0), size_(0) {}
29 ++refs_;
38 --refs_;
39 assert(refs_ >= 0);
40 if (refs_ <= 0) {
137 int refs_; // Protected by refs_mutex_; member in class:leveldb::__anon17079::FileState
  /external/chromium_org/v8/test/mjsunit/
mirror-error.js 33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
mirror-function.js 33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
debug-return-value.js 35 this.refs_ = [];
38 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
60 return this.refs_[handle];
mirror-regexp.js 44 this.refs_ = [];
46 this.refs_[tmp[i].handle] = tmp[i];
51 return this.refs_[handle];
mirror-unresolved-function.js 33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1081309.js 39 this.refs_ = [];
42 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
59 return this.refs_[handle];
  /external/chromium_org/v8/src/
serialize.h 51 int size() const { return refs_.length(); }
53 Address address(int i) { return refs_[i].address; }
55 uint32_t code(int i) { return refs_[i].code; }
57 const char* name(int i) { return refs_[i].name; }
62 explicit ExternalReferenceTable(Isolate* isolate) : refs_(64) {
87 List<ExternalReferenceEntry> refs_; member in class:v8::internal::ExternalReferenceTable
  /external/chromium_org/gpu/command_buffer/service/
mailbox_manager.cc 40 DCHECK_EQ(0U, texture->refs_.size());
texture_manager.cc 91 DCHECK(refs_.find(ref) == refs_.end());
92 refs_.insert(ref);
104 size_t result = refs_.erase(ref);
106 if (refs_.empty()) {
115 memory_tracking_ref_ = *refs_.begin();
379 for (RefSet::iterator it = refs_.begin(); it != refs_.end(); ++it)
389 for (RefSet::iterator it = refs_.begin(); it != refs_.end(); ++it
    [all...]

Completed in 1079 milliseconds

1 2