• Home
  • Raw
  • Download

Lines Matching refs:out_buffer_pos_

51       out_buffer_pos_(0) {  in Decoder()
52 out_buffer_[out_buffer_pos_] = '\0'; in Decoder()
155 int out_buffer_pos_; member in v8::internal::Decoder
168 out_buffer_[out_buffer_pos_++] = ch; in PrintChar()
175 while (cur != '\0' && (out_buffer_pos_ < (out_buffer_.length() - 1))) { in Print()
179 out_buffer_[out_buffer_pos_] = 0; in Print()
258 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sa); in PrintSa()
265 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sa); in PrintLsaSa()
272 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sd); in PrintSd()
279 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", ss + 1); in PrintSs1()
287 out_buffer_pos_ += in PrintSs2()
288 SNPrintF(out_buffer_ + out_buffer_pos_, "%d", ss - pos + 1); in PrintSs2()
295 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", cc); in PrintBc()
302 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "cc(%d)", cc); in PrintCc()
308 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", bp2); in PrintBp2()
314 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintUImm9()
320 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintSImm9()
326 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintUImm16()
333 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintSImm16()
340 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm16()
349 out_buffer_pos_ += in PrintPCImm16()
350 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm16()
360 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintSImm18()
367 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm18()
374 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm19()
384 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm19); in PrintSImm19()
391 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm21()
401 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm21); in PrintSImm21()
413 out_buffer_pos_ += in PrintPCImm21()
414 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm21()
425 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", target); in PrintXImm26()
435 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm26); in PrintSImm26()
447 out_buffer_pos_ += in PrintPCImm26()
448 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm26()
461 out_buffer_pos_ += in PrintPCImm26()
462 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm26()
474 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, in PrintCode()
485 out_buffer_pos_ += in PrintCode()
486 SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code); in PrintCode()
496 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintMsaXImm8()
501 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintMsaImm8()
506 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintMsaImm5()
513 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintMsaSImm5()
520 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintMsaSImm10()
525 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", m); in PrintMsaImmBit()
530 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", n); in PrintMsaImmElm()
537 out_buffer_pos_ += in PrintMsaCopy()
538 SNPrintF(out_buffer_ + out_buffer_pos_, "%s, %s[%u]", in PrintMsaCopy()
1002 while ((cur != 0) && (out_buffer_pos_ < (out_buffer_.length() - 1))) { in Format()
1006 out_buffer_[out_buffer_pos_++] = cur; in Format()
1010 out_buffer_[out_buffer_pos_] = '\0'; in Format()
2686 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, in InstructionDecode()