]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseLib/RRotU64.c
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / RRotU64.c
CommitLineData
e1f414b6 1/** @file\r
2 Math worker functions.\r
3\r
bb817c56 4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
9344f092 5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
e1f414b6 6\r
7**/\r
8\r
e1f414b6 9#include "BaseLibInternals.h"\r
10\r
11/**\r
12 Rotates a 64-bit integer right between 0 and 63 bits, filling the high bits\r
13 with the high low bits that were rotated.\r
14\r
15 This function rotates the 64-bit value Operand to the right by Count bits.\r
16 The high Count bits are fill with the low Count bits of Operand. The rotated\r
17 value is returned.\r
18\r
19 If Count is greater than 63, then ASSERT().\r
20\r
21 @param Operand The 64-bit operand to rotate right.\r
22 @param Count The number of bits to rotate right.\r
23\r
127010dd 24 @return Operand >> Count.\r
e1f414b6 25\r
26**/\r
27UINT64\r
28EFIAPI\r
29RRotU64 (\r
30 IN UINT64 Operand,\r
31 IN UINTN Count\r
32 )\r
33{\r
5385a579 34 ASSERT (Count < 64);\r
e1f414b6 35 return InternalMathRRotU64 (Operand, Count);\r
36}\r