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);
44 // Decoder decodes and disassembles instructions into an output buffer.
60 // Writes one disassembled instruction into 'buffer' (0-terminated).
164 // Append the ch to the output buffer.
167 // Append the str to the output buffer.
958 // the output buffer. All escaped options are handed to FormatOption to be
2646 // Disassemble the instruction at *instr_ptr into the output buffer.
2709 int Disassembler::InstructionDecode(v8::base::Vector<char> buffer,
2711 v8::internal::Decoder d(converter_, buffer);
2723 v8::base::EmbeddedVector<char, 128> buffer;
2724 buffer[0] = '\0';
2726 pc += d.InstructionDecode(buffer, pc);
2728 *reinterpret_cast<int32_t*>(prev_pc), buffer.begin());