]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseLib/LowBitSet64.c
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / LowBitSet64.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
1efcc4ae 9\r
f734a10a 10\r
e1f414b6 11\r
12#include "BaseLibInternals.h"\r
13\r
14/**\r
15 Returns the bit position of the lowest bit set in a 64-bit value.\r
16\r
17 This function computes the bit position of the lowest bit set in the 64-bit\r
18 value specified by Operand. If Operand is zero, then -1 is returned.\r
19 Otherwise, a value between 0 and 63 is returned.\r
20\r
21 @param Operand The 64-bit operand to evaluate.\r
22\r
9aa049d9 23 @retval 0..63 The lowest bit set in Operand was found.\r
127010dd 24 @retval -1 Operand is zero.\r
9aa049d9 25\r
e1f414b6 26\r
27**/\r
28INTN\r
29EFIAPI\r
30LowBitSet64 (\r
31 IN UINT64 Operand\r
32 )\r
33{\r
34 INTN BitIndex;\r
35\r
36 if (Operand == 0) {\r
37 return -1;\r
38 }\r
39\r
40 for (BitIndex = 0;\r
41 (Operand & 1) == 0;\r
42 BitIndex++, Operand = RShiftU64 (Operand, 1));\r
43 return BitIndex;\r
44}\r