Home
last modified time | relevance | path

Searched refs:string_start (Results 1 – 3 of 3) sorted by relevance

/external/libvterm/src/
Dparser.c193 const char *string_start; in vterm_push_bytes() local
197 string_start = NULL; in vterm_push_bytes()
205 string_start = bytes; in vterm_push_bytes()
209 #define ENTER_STRING_STATE(st) do { vt->parser_state = st; string_start = bytes + pos + 1; } while(… in vterm_push_bytes()
210 #define ENTER_NORMAL_STATE() do { vt->parser_state = NORMAL; string_start = NULL; } while(0) in vterm_push_bytes()
217 append_strbuffer(vt, string_start, bytes + pos - string_start); in vterm_push_bytes()
218 string_start = bytes + pos + 1; in vterm_push_bytes()
241 append_strbuffer(vt, string_start, bytes + pos - string_start); in vterm_push_bytes()
244 string_start = bytes + pos + 1; in vterm_push_bytes()
258 do_string(vt, string_start, bytes + pos - string_start - 1); in vterm_push_bytes()
[all …]
/external/v8/src/wasm/
Dmodule-decoder.cc869 const byte* string_start = decoder.pc(); in consume_string() local
873 !unibrow::Utf8::Validate(string_start, *length)) { in consume_string()
874 decoder.error(string_start, "no valid UTF-8 string"); in consume_string()
/external/v8/src/snapshot/
Dserializer.cc425 Address string_start = string->address(); in SerializeExternalString() local
427 sink_->PutSection(string_start[i], "StringHeader"); in SerializeExternalString()