Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dpreparsed-scope-data.cc97 backing_store_.push_back(kUint32Size); in WriteUint32()
101 backing_store_.push_back(*d++); in WriteUint32()
108 auto it = backing_store_.begin(); in OverwriteFirstUint32()
110 DCHECK_GE(backing_store_.size(), kUint32Size); in OverwriteFirstUint32()
123 backing_store_.push_back(kUint8Size); in WriteUint8()
125 backing_store_.push_back(data); in WriteUint8()
134 backing_store_.push_back(kQuarterMarker); in WriteQuarter()
136 backing_store_.push_back(0); in WriteQuarter()
143 DCHECK_EQ(backing_store_.back() & (3 << shift_amount), 0); in WriteQuarter()
144 backing_store_.back() |= (data << shift_amount); in WriteQuarter()
[all …]
Dscanner.h419 : position_(0), is_one_byte_(true), is_used_(false), backing_store_() {} in LiteralBuffer()
421 ~LiteralBuffer() { backing_store_.Dispose(); } in ~LiteralBuffer()
446 (memcmp(keyword.start(), backing_store_.start(), position_) == 0); in Equals()
454 reinterpret_cast<const uint16_t*>(backing_store_.start()), in two_byte_literal()
462 reinterpret_cast<const uint8_t*>(backing_store_.start()), position_); in one_byte_literal()
499 if (position_ >= backing_store_.length()) ExpandBuffer(); in AddOneByteChar()
500 backing_store_[position_] = one_byte_char; in AddOneByteChar()
512 Vector<byte> backing_store_; variable
Dpreparsed-scope-data.h72 : backing_store_(zone), free_quarters_in_last_byte_(0) {} in ByteData()
85 size_t size() const { return backing_store_.size(); } in size()
88 ZoneChunkList<uint8_t> backing_store_;
Dscanner.cc71 int capacity = Max(min_capacity, backing_store_.length()); in NewCapacity()
78 MemCopy(new_store.start(), backing_store_.start(), position_); in ExpandBuffer()
79 backing_store_.Dispose(); in ExpandBuffer()
80 backing_store_ = new_store; in ExpandBuffer()
87 if (new_content_size >= backing_store_.length()) { in ConvertToTwoByte()
92 new_store = backing_store_; in ConvertToTwoByte()
94 uint8_t* src = backing_store_.start(); in ConvertToTwoByte()
99 if (new_store.start() != backing_store_.start()) { in ConvertToTwoByte()
100 backing_store_.Dispose(); in ConvertToTwoByte()
101 backing_store_ = new_store; in ConvertToTwoByte()
[all …]
/external/v8/src/
Dfutex-emulation.h55 backing_store_(nullptr), in FutexWaitListNode()
71 void* backing_store_; variable
Dfutex-emulation.cc99 node->backing_store_ = backing_store; in Wait()
249 if (backing_store == node->backing_store_ && addr == node->wait_addr_) { in Wake()
274 if (backing_store == node->backing_store_ && addr == node->wait_addr_ && in NumWaitersForTesting()