MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / PrintBytes

Function PrintBytes

rEFIt_UEFI/Platform/BootLog.cpp:50–58  ·  view source on GitHub ↗

Prints series of bytes. */

Source from the content-addressed store, hash-verified

48
49/** Prints series of bytes. */
50VOID
51PrintBytes(IN VOID *Bytes, IN UINTN Number)
52{
53 UINTN Index;
54
55 for (Index = 0; Index < Number; Index += 16) {
56 PrintBytesRow((UINT8*)Bytes + Index, ((Index + 16 < Number) ? 16 : (Number - Index)), 16);
57 }
58}
59
60
61

Callers 2

IsOsxHibernatedFunction · 0.70
PrepareHibernationFunction · 0.70

Calls 1

PrintBytesRowFunction · 0.70

Tested by

no test coverage detected