]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/GetPowerOfTwo32.c
edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/*:
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseLib / GetPowerOfTwo32.c
CommitLineData
3eb9473e 1/*++\r
2\r
3Copyright (c) 2004 - 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 GetPowerOfTwo32.c\r
15 \r
16Abstract: \r
17\r
18 Math worker functions.\r
19\r
20--*/\r
21\r
c7f33ca4 22#include "BaseLibInternals.h"\r
3eb9473e 23\r
24/**\r
25 Returns the value of the highest bit set in a 32-bit value. Equivalent to\r
26 1 << HighBitSet32(x).\r
27\r
28 This function computes the value of the highest bit set in the 32-bit value\r
29 specified by Operand. If Operand is zero, then zero is returned.\r
30\r
31 @param Operand The 32-bit operand to evaluate.\r
32\r
33 @return 1 << HighBitSet32(Operand)\r
34 @retval 0 Operand is zero.\r
35\r
36**/\r
37UINT32\r
38EFIAPI\r
39GetPowerOfTwo32 (\r
40 IN UINT32 Operand\r
41 )\r
42{\r
43 if (Operand == 0) {\r
44 return 0;\r
45 }\r
46\r
47 return 1ul << HighBitSet32 (Operand);\r
48}\r