VirtualBox

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

最後變更 在這個檔案從107675是 99404,由 vboxsync 提交於 2 年 前

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • 屬性 svn:eol-style 設為 native
檔案大小: 595 位元組
 
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#include "BaseLibInternals.h"
10
11/**
12 Switches the endianess of a 64-bit integer.
13
14 This function swaps the bytes in a 64-bit unsigned value to switch the value
15 from little endian to big endian or vice versa. The byte swapped value is
16 returned.
17
18 @param Value A 64-bit unsigned value.
19
20 @return The byte swapped Value.
21
22**/
23UINT64
24EFIAPI
25SwapBytes64 (
26 IN UINT64 Value
27 )
28{
29 return InternalMathSwapBytes64 (Value);
30}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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