2007-06-22 11:21:45 +08:00
|
|
|
/** @file
|
|
|
|
Math worker functions.
|
|
|
|
|
2008-12-29 22:07:07 +08:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
2007-06-22 11:21:45 +08:00
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2008-09-17 15:46:17 +08:00
|
|
|
|
2007-06-30 07:22:13 +08:00
|
|
|
|
2007-06-22 11:21:45 +08:00
|
|
|
|
|
|
|
#include "BaseLibInternals.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
Switches the endianess of a 16-bit integer.
|
|
|
|
|
|
|
|
This function swaps the bytes in a 16-bit unsigned value to switch the value
|
|
|
|
from little endian to big endian or vice versa. The byte swapped value is
|
|
|
|
returned.
|
|
|
|
|
2008-12-11 10:59:41 +08:00
|
|
|
@param Value A 16-bit unsigned value.
|
2007-06-22 11:21:45 +08:00
|
|
|
|
2008-12-11 12:45:23 +08:00
|
|
|
@return The byte swapped Value.
|
2007-06-22 11:21:45 +08:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT16
|
|
|
|
EFIAPI
|
|
|
|
SwapBytes16 (
|
2008-12-11 10:59:41 +08:00
|
|
|
IN UINT16 Value
|
2007-06-22 11:21:45 +08:00
|
|
|
)
|
|
|
|
{
|
2008-12-11 10:59:41 +08:00
|
|
|
return (UINT16) ((Value<< 8) | (Value>> 8));
|
2007-06-22 11:21:45 +08:00
|
|
|
}
|