Lines Matching refs:output_registers
290 int32_t* output_registers = isolate->jsregexp_static_offsets_vector(); in AtomExec() local
292 int res = AtomExecRaw(re, subject, index, output_registers, kNumRegisters); in AtomExec()
298 SetAtomLastCapture(last_match_info, *subject, output_registers[0], in AtomExec()
299 output_registers[1]); in AtomExec()
585 int32_t* output_registers = NULL; in IrregexpExec() local
587 output_registers = NewArray<int32_t>(required_registers); in IrregexpExec()
589 std::unique_ptr<int32_t[]> auto_release(output_registers); in IrregexpExec()
590 if (output_registers == NULL) { in IrregexpExec()
591 output_registers = isolate->jsregexp_static_offsets_vector(); in IrregexpExec()
595 regexp, subject, previous_index, output_registers, required_registers); in IrregexpExec()
600 last_match_info, subject, capture_count, output_registers); in IrregexpExec()