Lines Matching refs:byte_data_

165       byte_data_(new (zone) ByteData(zone)),  in ProducedPreParsedScopeData()
173 byte_data_->WriteUint32(0); in ProducedPreParsedScopeData()
182 byte_data_(nullptr), in ProducedPreParsedScopeData()
237 byte_data_->WriteUint32(start_position); in AddSkippableFunction()
238 byte_data_->WriteUint32(end_position); in AddSkippableFunction()
239 byte_data_->WriteUint32(num_parameters); in AddSkippableFunction()
240 byte_data_->WriteUint32(num_inner_functions); in AddSkippableFunction()
245 byte_data_->WriteQuarter(language_and_super); in AddSkippableFunction()
254 DCHECK_GE(byte_data_->size(), kPlaceholderSize); in SaveScopeAllocationData()
255 DCHECK_LE(byte_data_->size(), std::numeric_limits<uint32_t>::max()); in SaveScopeAllocationData()
256 DCHECK_EQ(byte_data_->size() % kSkippableFunctionDataSize, kPlaceholderSize); in SaveScopeAllocationData()
262 uint32_t scope_data_start = static_cast<uint32_t>(byte_data_->size()); in SaveScopeAllocationData()
270 byte_data_->OverwriteFirstUint32(scope_data_start); in SaveScopeAllocationData()
274 byte_data_->WriteUint32(kMagicValue); in SaveScopeAllocationData()
275 byte_data_->WriteUint32(scope->start_position()); in SaveScopeAllocationData()
276 byte_data_->WriteUint32(scope->end_position()); in SaveScopeAllocationData()
283 return byte_data_->size() > kPlaceholderSize; in ContainsInnerFunctions()
299 if (byte_data_->size() <= kPlaceholderSize) { in Serialize()
308 Handle<PodArray<uint8_t>> scope_data_array = byte_data_->Serialize(isolate); in Serialize()
369 byte_data_->WriteUint8(scope->scope_type()); in SaveDataForScope()
377 byte_data_->WriteUint8(eval); in SaveDataForScope()
400 byte_data_->WriteUint8(name->is_one_byte()); in SaveDataForVariable()
401 byte_data_->WriteUint32(name->length()); in SaveDataForVariable()
403 byte_data_->WriteUint8(name->raw_data()[i]); in SaveDataForVariable()
410 byte_data_->WriteQuarter(variable_data); in SaveDataForVariable()