Lines Matching refs:start_
220 result_.start = start_; in ModuleDecoder()
221 if (end_ < start_) { in ModuleDecoder()
222 error(start_, "end is less than start"); in ModuleDecoder()
223 end_ = start_; in ModuleDecoder()
241 size_t hash = base::hash_range(start_, end_); in DumpModule()
250 fwrite(start_, end_ - start_, 1, wasm_file); in DumpModule()
257 pc_ = start_; in DecodeModule()
293 static_cast<int>(pc_ - start_)); in DecodeModule()
307 static_cast<int>(pc_ - start_)); in DecodeModule()
452 static_cast<int>(pc_ - start_)); in DecodeModule()
469 static_cast<int>(pc_ - start_)); in DecodeModule()
525 const byte* base = start_; in DecodeModule()
541 const byte* pc = start_ + it->name_offset; in DecodeModule()
617 ModuleWireBytes(start_, end_)); in DecodeModule()
637 static_cast<int>(pc_ - start_)); in DecodeModule()
653 Decoder inner(start_, pc_, end_); in DecodeModule()
698 pc_ = start_; in DecodeSingleFunction()
730 uint32_t off(const byte* ptr) { return static_cast<uint32_t>(ptr - start_); } in off()
797 segment->source_offset = static_cast<uint32_t>(pc_ - start_); in DecodeDataSegmentInModule()
800 uint32_t module_limit = static_cast<uint32_t>(end_ - start_); in DecodeDataSegmentInModule()
835 FunctionBody body = {function->sig, start_, in VerifyFunctionBody()
836 start_ + function->code_start_offset, in VerifyFunctionBody()
837 start_ + function->code_end_offset}; in VerifyFunctionBody()