VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Library/BaseLib/SwapBytes64.c@ 80721

Last change on this file since 80721 was 80721, checked in by vboxsync, 6 years ago

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • Property svn:eol-style set to native
File size: 616 bytes
Line 
1/** @file
2 Math worker functions.
3
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9
10
11
12#include "BaseLibInternals.h"
13
14/**
15 Switches the endianess of a 64-bit integer.
16
17 This function swaps the bytes in a 64-bit unsigned value to switch the value
18 from little endian to big endian or vice versa. The byte swapped value is
19 returned.
20
21 @param Value A 64-bit unsigned value.
22
23 @return The byte swapped Value.
24
25**/
26UINT64
27EFIAPI
28SwapBytes64 (
29 IN UINT64 Value
30 )
31{
32 return InternalMathSwapBytes64 (Value);
33}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette