Home
last modified time | relevance | path

Searched refs:refs_ (Results 1 – 19 of 19) sorted by relevance

/external/v8/test/mjsunit/regress/
Dregress-1081309.js39 this.refs_ = []; property in ParsedResponse
42 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
59 return this.refs_[handle];
/external/v8/test/mjsunit/
Dmirror-error.js33 this.refs_ = []; property in MirrorRefCache
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
Dmirror-function.js33 this.refs_ = []; property in MirrorRefCache
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
Dmirror-unresolved-function.js33 this.refs_ = []; property in MirrorRefCache
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
Ddebug-return-value.js35 this.refs_ = []; property in ParsedResponse
38 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
60 return this.refs_[handle];
Dmirror-regexp.js44 this.refs_ = []; property in MirrorRefCache
46 this.refs_[tmp[i].handle] = tmp[i];
51 return this.refs_[handle];
Dmirror-array.js33 this.refs_ = []; property in MirrorRefCache
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
Ddebug-backtrace.js53 this.refs_ = []; property in ParsedResponse
56 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
78 return this.refs_[handle];
Dmirror-object.js33 this.refs_ = []; property in MirrorRefCache
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
/external/v8/test/mjsunit/es6/
Dgenerators-mirror.js17 this.refs_ = []; property in MirrorRefCache
19 this.refs_[tmp[i].handle] = tmp[i];
24 return this.refs_[handle];
Dmirror-promises.js10 this.refs_ = []; property in MirrorRefCache
12 this.refs_[tmp[i].handle] = tmp[i];
17 return this.refs_[handle];
/external/v8/test/cctest/
Dtest-threads.cc131 refs_(refs), in ThreadIdValidationThread()
139 CHECK(!(*refs_)[i].Equals(thread_id)); in Run()
142 (*refs_)[thread_no_] = thread_id; in Run()
150 i::List<i::ThreadId>* refs_; member in ThreadIdValidationThread
/external/v8/src/
Dserialize.h51 int size() const { return refs_.length(); } in size()
53 Address address(int i) { return refs_[i].address; } in address()
55 uint32_t code(int i) { return refs_[i].code; } in code()
57 const char* name(int i) { return refs_[i].name; } in name()
62 explicit ExternalReferenceTable(Isolate* isolate) : refs_(64) { in ExternalReferenceTable()
87 List<ExternalReferenceEntry> refs_; variable
Dd8.js1684 this.refs_ = []; property in ProtocolPackage
1687 this.refs_[this.packet_.refs[i].handle] = this.packet_.refs[i];
1764 var value = this.refs_[handle];
Dserialize.cc106 refs_.Add(entry); in Add()
/external/webp/src/enc/
Dbackward_references.c85 refs->free_blocks_ = refs->refs_; in ClearBackwardRefs()
86 refs->tail_ = &refs->refs_; in ClearBackwardRefs()
88 refs->refs_ = NULL; in ClearBackwardRefs()
104 refs->tail_ = &refs->refs_; in VP8LBackwardRefsInit()
111 c.cur_block_ = refs->refs_; in VP8LRefsCursorInit()
112 if (refs->refs_ != NULL) { in VP8LRefsCursorInit()
164 const PixOrCopyBlock* b = src->refs_; in VP8LBackwardRefsCopy()
Dvp8li.h51 struct VP8LBackwardRefs refs_[2]; // Backward Refs array corresponding to member
Dvp8l.c178 VP8LBackwardRefsInit(&enc->refs_[0], refs_block_size); in AnalyzeAndInit()
179 VP8LBackwardRefsInit(&enc->refs_[1], refs_block_size); in AnalyzeAndInit()
754 (VP8LBackwardRefs*)enc->refs_, // cast const away in ApplyPredictFilter()
775 (VP8LBackwardRefs*)enc->refs_, // cast const away in ApplyCrossColorFilter()
972 err = EncodeImageNoHuffman(bw, palette, &enc->hash_chain_, enc->refs_, in EncodePalette()
1037 VP8LBackwardRefsClear(&enc->refs_[0]); in VP8LEncoderDelete()
1038 VP8LBackwardRefsClear(&enc->refs_[1]); in VP8LEncoderDelete()
1116 &enc->refs_[0], &enc->cache_bits_)) { in VP8LEncodeStream()
1125 err = EncodeImageInternal(bw, enc->argb_, &enc->hash_chain_, enc->refs_, in VP8LEncodeStream()
Dbackward_references.h150 PixOrCopyBlock* refs_; // list of currently used blocks member