Lines Matching defs:start
207 WireBytesRef source; // start offset in the module bytes.
423 int start_function_index = -1; // start function, >= 0 if any
573 // The offset will be relative to the start of the module bytes.
601 ModuleWireBytes(const byte* start, const byte* end)
602 : module_bytes_(start, static_cast<int>(end - start)) {
603 DCHECK_GE(kMaxInt, end - start);
626 const byte* start() const { return module_bytes_.begin(); }
682 // printf("... %.*s ...", name.length(), name.start())
692 TruncatedUserString(const byte* start, size_t len)
693 : TruncatedUserString(reinterpret_cast<const char*>(start), len) {}
695 TruncatedUserString(const char* start, size_t len)
696 : start_(start), length_(std::min(kMaxLen, static_cast<int>(len))) {
698 memcpy(buffer_, start, kMaxLen - 3);
704 const char* start() const { return start_; }