Home
last modified time | relevance | path

Searched refs:bufPos (Results 1 – 3 of 3) sorted by relevance

/CTR-SDK-4.2.5/sources/libraries/dbg/
Ddbg_Dump.cpp33 int bufPos; in DumpMemory() local
48 bufPos = 0; in DumpMemory()
49bufPos += 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()
60 bufPos = 0; in DumpMemory()
61 bufPos += nstd::TSPrintf(buffer, "%08x: ", address & static_cast<uptr>(~0xf)); in DumpMemory()
70 bufPos += 3; in DumpMemory()
78 bufPos += nstd::TSPrintf(&buffer[bufPos], " %02x", val); in DumpMemory()
[all …]
/CTR-SDK-4.2.5/sources/libraries/dbg/CTR/
Ddbg_DirectPrint.cpp202 nn::math::VEC2 bufPos; in PutChar() local
203 ConvertPositionUserOriginToDeviceOrigin( &bufPos, pos + nn::math::VEC2( 0, FONT_HEIGHT ) ); in PutChar()
219 if ( bufPos.y + y >= m_BufferSize.x || bufPos.y + y < 0 ) in PutChar()
226 if ( bufPos.x + x >= m_BufferSize.y || bufPos.x + x < 0 ) in PutChar()
232 PutDot( nn::math::VEC2( bufPos.x + x, bufPos.y + y ), charColorData, byteByDot ); in PutChar()
238 PutDot( nn::math::VEC2( bufPos.x + x, bufPos.y + y ), bgColorData, byteByDot ); in PutChar()
258 nn::math::VEC2 bufPos; in Clear() local
259 ConvertPositionUserOriginToDeviceOrigin( &bufPos, pos + nn::math::VEC2( 0, size.y ) ); in Clear()
264 if ( bufPos.y + y >= m_BufferSize.x || bufPos.y + y < 0 ) in Clear()
271 if ( bufPos.x + x >= m_BufferSize.y || bufPos.x + x < 0 ) in Clear()
[all …]
/CTR-SDK-4.2.5/include/nn/dbg/CTR/
Ddbg_DirectPrint.h285 void PutDot( const nn::math::VEC2& bufPos, const bit8* data, s32 byteByDot );