mirror of https://github.com/acidanthera/audk.git
Fixed K9 scan issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10781 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
19550383ac
commit
a58b9d96b4
|
@ -494,7 +494,7 @@ typedef CHAR8 *VA_LIST;
|
|||
@return A pointer to the beginning of a variable argument list.
|
||||
|
||||
**/
|
||||
#define VA_START(Marker, Parameter) (Marker = (VA_LIST) & (Parameter) + _INT_SIZE_OF (Parameter))
|
||||
#define VA_START(Marker, Parameter) (Marker = (VA_LIST) ((UINTN) & (Parameter) + _INT_SIZE_OF (Parameter)))
|
||||
|
||||
/**
|
||||
Returns an argument of a specified type from a variable argument list and updates
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
Math worker functions.
|
||||
|
||||
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -40,5 +40,5 @@ GetPowerOfTwo64 (
|
|||
return 0;
|
||||
}
|
||||
|
||||
return LShiftU64 (1, HighBitSet64 (Operand));
|
||||
return LShiftU64 (1, (UINTN) HighBitSet64 (Operand));
|
||||
}
|
||||
|
|
|
@ -38,5 +38,5 @@ MultS64x64 (
|
|||
IN INT64 Multiplier
|
||||
)
|
||||
{
|
||||
return (INT64)MultU64x64 (Multiplicand, Multiplier);
|
||||
return (INT64)MultU64x64 ((UINT64) Multiplicand, (UINT64) Multiplier);
|
||||
}
|
||||
|
|
|
@ -14,17 +14,17 @@
|
|||
|
||||
#include "BaseLibInternals.h"
|
||||
|
||||
#define QUOTIENT_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 / 10)
|
||||
#define REMAINDER_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 % 10)
|
||||
#define QUOTIENT_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 / 10U)
|
||||
#define REMAINDER_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 % 10U)
|
||||
|
||||
#define QUOTIENT_MAX_UINTN_DIVIDED_BY_16 ((UINTN) -1 / 16)
|
||||
#define REMAINDER_MAX_UINTN_DIVIDED_BY_16 ((UINTN) -1 % 16)
|
||||
#define QUOTIENT_MAX_UINTN_DIVIDED_BY_16 ((UINTN) -1 / 16U)
|
||||
#define REMAINDER_MAX_UINTN_DIVIDED_BY_16 ((UINTN) -1 % 16U)
|
||||
|
||||
#define QUOTIENT_MAX_UINT64_DIVIDED_BY_10 ((UINT64) -1 / 10)
|
||||
#define REMAINDER_MAX_UINT64_DIVIDED_BY_10 ((UINT64) -1 % 10)
|
||||
#define QUOTIENT_MAX_UINT64_DIVIDED_BY_10 ((UINT64) -1 / 10U)
|
||||
#define REMAINDER_MAX_UINT64_DIVIDED_BY_10 ((UINT64) -1 % 10U)
|
||||
|
||||
#define QUOTIENT_MAX_UINT64_DIVIDED_BY_16 ((UINT64) -1 / 16)
|
||||
#define REMAINDER_MAX_UINT64_DIVIDED_BY_16 ((UINT64) -1 % 16)
|
||||
#define QUOTIENT_MAX_UINT64_DIVIDED_BY_16 ((UINT64) -1 / 16U)
|
||||
#define REMAINDER_MAX_UINT64_DIVIDED_BY_16 ((UINT64) -1 % 16U)
|
||||
|
||||
/**
|
||||
Copies one Null-terminated Unicode string to another Null-terminated Unicode
|
||||
|
|
Loading…
Reference in New Issue