MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / AddNumber

Method AddNumber

3rdparty/d3d12memalloc/src/D3D12MemAlloc.cpp:1452–1464  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1450}
1451
1452void StringBuilder::AddNumber(UINT num)
1453{
1454 WCHAR buf[11];
1455 buf[10] = L'\0';
1456 WCHAR *p = &buf[10];
1457 do
1458 {
1459 *--p = L'0' + (num % 10);
1460 num /= 10;
1461 }
1462 while (num);
1463 Add(p);
1464}
1465
1466void StringBuilder::AddNumber(UINT64 num)
1467{

Callers 2

ContinueStringMethod · 0.45
WriteNumberMethod · 0.45

Calls 1

AddFunction · 0.85

Tested by

no test coverage detected