Home | History | Annotate | Download | only in disassembler

Lines Matching defs:args

180   std::ostringstream args;
193 args << sa;
200 args << FormatInstructionPointer(instr_ptr + offset)
204 case 'D': args << 'r' << rd; break;
205 case 'd': args << 'f' << rd; break;
221 args << reinterpret_cast<void*>((instruction & 0xffff) << 16);
224 args << static_cast<int16_t>(instruction & 0xffff);
232 args << reinterpret_cast<void*>(target);
238 args << StringPrintf("%+d(r%d)", offset, rs);
240 args << " ; ";
241 Thread::DumpThreadOffset<4>(args, offset);
245 case 'S': args << 'r' << rs; break;
246 case 's': args << 'f' << rs; break;
247 case 'T': args << 'r' << rt; break;
248 case 't': args << 'f' << rt; break;
251 args << ", ";
260 << args.str() << '\n';