Home | History | Annotate | Download | only in Core

Lines Matching defs:bytes_written

31     int bytes_written = 0;
35 bytes_written = s->PutCString ("<invalid>");
38 bytes_written = s->Printf ("0x%2.2x", m_data.inst8);
41 bytes_written = s->Printf ("0x%4.4x", m_data.inst16);
45 bytes_written = s->Printf ("0x%8.8x", m_data.inst32);
49 bytes_written = s->Printf ("0x%16.16" PRIx64, m_data.inst64);
57 bytes_written += s->PutChar (' ');
58 bytes_written += s->Printf ("%2.2x", m_data.inst.bytes[i]);
66 if (bytes_written < min_byte_width)
67 bytes_written = s->Printf ("%*s", min_byte_width - bytes_written, "");
68 return bytes_written;