TianoCore EDK2
master
Loading...
Searching...
No Matches
GetPowerOfTwo32.c
Go to the documentation of this file.
1
9
#include "
BaseLibInternals.h
"
10
24
UINT32
25
EFIAPI
26
GetPowerOfTwo32
(
27
IN
UINT32 Operand
28
)
29
{
30
if
(0 == Operand) {
31
return
0;
32
}
33
34
return
1ul <<
HighBitSet32
(Operand);
35
}
HighBitSet32
INTN EFIAPI HighBitSet32(IN UINT32 Operand)
Definition:
HighBitSet32.c:27
BaseLibInternals.h
GetPowerOfTwo32
UINT32 EFIAPI GetPowerOfTwo32(IN UINT32 Operand)
Definition:
GetPowerOfTwo32.c:26
IN
#define IN
Definition:
Base.h:279
MdePkg
Library
BaseLib
GetPowerOfTwo32.c
Generated on Fri Nov 15 2024 18:01:17 for TianoCore EDK2 by
1.9.6