Lines Matching defs:buffer
14 // v8::base::EmbeddedVector<char, 256> buffer;
16 // pc += d.InstructionDecode(buffer, pc);
18 // prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer);
47 // Decoder decodes and disassembles instructions into an output buffer.
61 // Writes one disassembled instruction into 'buffer' (0-terminated).
146 // Append the ch to the output buffer.
149 // Append the str to the output buffer.
706 // the output buffer. All escaped options are handed to FormatOption to be
2531 // Disassemble the instruction at *instr_ptr into the output buffer.
2621 int Disassembler::InstructionDecode(v8::base::Vector<char> buffer,
2623 v8::internal::Decoder d(converter_, buffer);
2636 v8::base::EmbeddedVector<char, 128> buffer;
2637 buffer[0] = '\0';
2639 pc += d.InstructionDecode(buffer, pc);
2641 *reinterpret_cast<int32_t*>(prev_pc), buffer.begin());