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).
176 // Append the ch to the output buffer.
179 // Append the str to the output buffer.
1012 // the output buffer. All escaped options are handed to FormatOption to be
2933 // Disassemble the instruction at *instr_ptr into the output buffer.
2998 int Disassembler::InstructionDecode(v8::base::Vector<char> buffer,
3000 v8::internal::Decoder d(converter_, buffer);
3012 v8::base::EmbeddedVector<char, 128> buffer;
3013 buffer[0] = '\0';
3015 pc += d.InstructionDecode(buffer, pc);
3017 *reinterpret_cast<int32_t*>(prev_pc), buffer.begin());