Lines Matching refs:buffer
14 // v8::base::EmbeddedVector<char, 256> buffer;
16 // pc += d.InstructionDecode(buffer, pc);
18 // prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer);
44 // Decoder decodes and disassembles instructions into an output buffer.
59 // Writes one disassembled instruction into 'buffer' (0-terminated).
170 // Append the ch to the output buffer.
173 // Append the str to the output buffer.
849 // the output buffer. All escaped options are handed to FormatOption to be
2812 // Disassemble the instruction at *instr_ptr into the output buffer.
2917 int Disassembler::InstructionDecode(v8::base::Vector<char> buffer,
2919 v8::internal::Decoder d(converter_, buffer);
2933 v8::base::EmbeddedVector<char, 128> buffer;
2934 buffer[0] = '\0';
2936 pc += d.InstructionDecode(buffer, pc);
2938 *reinterpret_cast<uint32_t*>(prev_pc), buffer.begin());