]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/LShiftU64.c
Removed CommonHeader.h generated file from the MdePkg.
[mirror_edk2.git] / MdePkg / Library / BaseLib / LShiftU64.c
1 /** @file
2 Math worker functions.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 //
16 // Include common header file for this module.
17 //
18
19
20 #include "BaseLibInternals.h"
21
22 /**
23 Shifts a 64-bit integer left between 0 and 63 bits. The low bits are filled
24 with zeros. The shifted value is returned.
25
26 This function shifts the 64-bit value Operand to the left by Count bits. The
27 low Count bits are set to zero. The shifted value is returned.
28
29 If Count is greater than 63, then ASSERT().
30
31 @param Operand The 64-bit operand to shift left.
32 @param Count The number of bits to shift left.
33
34 @return Operand << Count
35
36 **/
37 UINT64
38 EFIAPI
39 LShiftU64 (
40 IN UINT64 Operand,
41 IN UINTN Count
42 )
43 {
44 ASSERT (Count < sizeof (Operand) * 8);
45 return InternalMathLShiftU64 (Operand, Count);
46 }