Home
last modified time | relevance | path

Searched refs:backing_store_ (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/parsing/
Dpreparsed-scope-data.cc36 data->backing_store_.push_back(scope_type); in ScopeScope()
37 data->backing_store_.push_back(start_position); in ScopeScope()
38 data->backing_store_.push_back(end_position); in ScopeScope()
41 index_in_data_ = data->backing_store_.size(); in ScopeScope()
42 data->backing_store_.push_back(-1); in ScopeScope()
43 data->backing_store_.push_back(-1); in ScopeScope()
54 data_->backing_store_[index_in_data_] = inner_scope_count_; in ~ScopeScope()
55 data_->backing_store_[index_in_data_ + 1] = variable_count_; in ~ScopeScope()
59 DCHECK_EQ(data_->backing_store_.size(), index_in_data_ + 2); in ~ScopeScope()
62 data_->backing_store_.erase( in ~ScopeScope()
[all …]
Dduplicate-finder.cc64 backing_store_.StartSequence(); in BackupKey()
71 backing_store_.Add( in BackupKey()
74 backing_store_.Add( in BackupKey()
77 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 14) | 0x80u)); in BackupKey()
79 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 7) | 0x80u)); in BackupKey()
81 backing_store_.Add(static_cast<uint8_t>(one_byte_length & 0x7f)); in BackupKey()
83 backing_store_.AddBlock(bytes); in BackupKey()
84 return backing_store_.EndSequence().start(); in BackupKey()
Dduplicate-finder.h17 DuplicateFinder() : backing_store_(16), map_(&Match) {} in DuplicateFinder()
39 SequenceCollector<unsigned char> backing_store_; variable
Dscanner.cc70 int capacity = Max(min_capacity, backing_store_.length()); in NewCapacity()
77 MemCopy(new_store.start(), backing_store_.start(), position_); in ExpandBuffer()
78 backing_store_.Dispose(); in ExpandBuffer()
79 backing_store_ = new_store; in ExpandBuffer()
86 if (new_content_size >= backing_store_.length()) { in ConvertToTwoByte()
91 new_store = backing_store_; in ConvertToTwoByte()
93 uint8_t* src = backing_store_.start(); in ConvertToTwoByte()
98 if (new_store.start() != backing_store_.start()) { in ConvertToTwoByte()
99 backing_store_.Dispose(); in ConvertToTwoByte()
100 backing_store_ = new_store; in ConvertToTwoByte()
[all …]
Dscanner.h368 LiteralBuffer() : is_one_byte_(true), position_(0), backing_store_() {} in LiteralBuffer()
370 ~LiteralBuffer() { backing_store_.Dispose(); } in ~LiteralBuffer()
390 (memcmp(keyword.start(), backing_store_.start(), position_) == 0); in is_contextual_keyword()
397 reinterpret_cast<const uint16_t*>(backing_store_.start()), in two_byte_literal()
404 reinterpret_cast<const uint8_t*>(backing_store_.start()), position_); in one_byte_literal()
436 if (position_ >= backing_store_.length()) ExpandBuffer(); in INLINE()
437 backing_store_[position_] = one_byte_char; in INLINE()
448 Vector<byte> backing_store_; variable
Dpreparsed-scope-data.h48 std::vector<int> backing_store_; variable
/external/v8/src/
Dfutex-emulation.h43 backing_store_(nullptr), in FutexWaitListNode()
57 void* backing_store_; variable
Dfutex-emulation.cc93 node->backing_store_ = backing_store; in Wait()
202 if (backing_store == node->backing_store_ && addr == node->wait_addr_) { in Wake()
229 if (backing_store == node->backing_store_ && addr == node->wait_addr_ && in NumWaitersForTesting()
/external/v8/src/heap/
Dmark-compact.h128 : backing_store_(nullptr), in MarkingDeque()
236 base::VirtualMemory* backing_store_; variable
Dmark-compact.cc2146 backing_store_ = new base::VirtualMemory(kMaxSize); in SetUp()
2148 if (backing_store_ == nullptr) { in SetUp()
2154 delete backing_store_; in TearDown()
2166 array_ = reinterpret_cast<HeapObject**>(backing_store_->address()); in StartUsing()
2199 bool success = backing_store_->Uncommit(backing_store_->address(), in Uncommit()
2210 if (backing_store_->Commit(backing_store_->address(), size, false)) { in EnsureCommitted()