Lines Matching refs:buffer
31 char buffer[80]; in DumpMemory() local
49 … bufPos += nstd::TSPrintf(buffer, " 0 1 2 3 4 5 6 7 8 9 a b c d e f"); in DumpMemory()
52 bufPos += nstd::TSPrintf(&buffer[bufPos], " 0123456789abcdef"); in DumpMemory()
54 bufPos += nstd::TSPrintf(&buffer[bufPos], "\n"); in DumpMemory()
55 detail::PutString(buffer, bufPos); in DumpMemory()
61 bufPos += nstd::TSPrintf(buffer, "%08x: ", address & static_cast<uptr>(~0xf)); in DumpMemory()
69 std::strcat(buffer, " "); in DumpMemory()
78 bufPos += nstd::TSPrintf(&buffer[bufPos], " %02x", val); in DumpMemory()
90 std::strcat(buffer, " "); in DumpMemory()
99 bufPos += nstd::TSPrintf(&buffer[bufPos], " %s", bufferString); in DumpMemory()
102 std::strcat(buffer, "\n"); in DumpMemory()
103 detail::PutString(buffer); in DumpMemory()