Rename BaseLib internal functions by adding InternalBaseLib.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8980 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4 2009-07-23 01:43:04 +00:00
parent 88e349f1fe
commit 80151e5331
3 changed files with 29 additions and 29 deletions

View File

@ -28,7 +28,7 @@
**/ **/
UINTN UINTN
EFIAPI EFIAPI
BitFieldReadUint ( InternalBaseLibBitFieldReadUint (
IN UINTN Operand, IN UINTN Operand,
IN UINTN StartBit, IN UINTN StartBit,
IN UINTN EndBit IN UINTN EndBit
@ -59,7 +59,7 @@ BitFieldReadUint (
**/ **/
UINTN UINTN
EFIAPI EFIAPI
BitFieldOrUint ( InternalBaseLibBitFieldOrUint (
IN UINTN Operand, IN UINTN Operand,
IN UINTN StartBit, IN UINTN StartBit,
IN UINTN EndBit, IN UINTN EndBit,
@ -91,7 +91,7 @@ BitFieldOrUint (
**/ **/
UINTN UINTN
EFIAPI EFIAPI
BitFieldAndUint ( InternalBaseLibBitFieldAndUint (
IN UINTN Operand, IN UINTN Operand,
IN UINTN StartBit, IN UINTN StartBit,
IN UINTN EndBit, IN UINTN EndBit,
@ -134,7 +134,7 @@ BitFieldRead8 (
{ {
ASSERT (EndBit < 8); ASSERT (EndBit < 8);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT8)BitFieldReadUint (Operand, StartBit, EndBit); return (UINT8)InternalBaseLibBitFieldReadUint (Operand, StartBit, EndBit);
} }
/** /**
@ -207,7 +207,7 @@ BitFieldOr8 (
{ {
ASSERT (EndBit < 8); ASSERT (EndBit < 8);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT8)BitFieldOrUint (Operand, StartBit, EndBit, OrData); return (UINT8)InternalBaseLibBitFieldOrUint (Operand, StartBit, EndBit, OrData);
} }
/** /**
@ -244,7 +244,7 @@ BitFieldAnd8 (
{ {
ASSERT (EndBit < 8); ASSERT (EndBit < 8);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT8)BitFieldAndUint (Operand, StartBit, EndBit, AndData); return (UINT8)InternalBaseLibBitFieldAndUint (Operand, StartBit, EndBit, AndData);
} }
/** /**
@ -321,7 +321,7 @@ BitFieldRead16 (
{ {
ASSERT (EndBit < 16); ASSERT (EndBit < 16);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT16)BitFieldReadUint (Operand, StartBit, EndBit); return (UINT16)InternalBaseLibBitFieldReadUint (Operand, StartBit, EndBit);
} }
/** /**
@ -394,7 +394,7 @@ BitFieldOr16 (
{ {
ASSERT (EndBit < 16); ASSERT (EndBit < 16);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT16)BitFieldOrUint (Operand, StartBit, EndBit, OrData); return (UINT16)InternalBaseLibBitFieldOrUint (Operand, StartBit, EndBit, OrData);
} }
/** /**
@ -431,7 +431,7 @@ BitFieldAnd16 (
{ {
ASSERT (EndBit < 16); ASSERT (EndBit < 16);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT16)BitFieldAndUint (Operand, StartBit, EndBit, AndData); return (UINT16)InternalBaseLibBitFieldAndUint (Operand, StartBit, EndBit, AndData);
} }
/** /**
@ -508,7 +508,7 @@ BitFieldRead32 (
{ {
ASSERT (EndBit < 32); ASSERT (EndBit < 32);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT32)BitFieldReadUint (Operand, StartBit, EndBit); return (UINT32)InternalBaseLibBitFieldReadUint (Operand, StartBit, EndBit);
} }
/** /**
@ -581,7 +581,7 @@ BitFieldOr32 (
{ {
ASSERT (EndBit < 32); ASSERT (EndBit < 32);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT32)BitFieldOrUint (Operand, StartBit, EndBit, OrData); return (UINT32)InternalBaseLibBitFieldOrUint (Operand, StartBit, EndBit, OrData);
} }
/** /**
@ -618,7 +618,7 @@ BitFieldAnd32 (
{ {
ASSERT (EndBit < 32); ASSERT (EndBit < 32);
ASSERT (StartBit <= EndBit); ASSERT (StartBit <= EndBit);
return (UINT32)BitFieldAndUint (Operand, StartBit, EndBit, AndData); return (UINT32)InternalBaseLibBitFieldAndUint (Operand, StartBit, EndBit, AndData);
} }
/** /**

View File

@ -37,7 +37,7 @@
**/ **/
BOOLEAN BOOLEAN
EFIAPI EFIAPI
IsNodeInList ( InternalBaseLibIsNodeInList (
IN CONST LIST_ENTRY *List, IN CONST LIST_ENTRY *List,
IN CONST LIST_ENTRY *Node IN CONST LIST_ENTRY *Node
) )
@ -136,7 +136,7 @@ InsertHeadList (
// //
// ASSERT List not too long and Entry is not one of the nodes of List // ASSERT List not too long and Entry is not one of the nodes of List
// //
ASSERT (!IsNodeInList (ListHead, Entry)); ASSERT (!InternalBaseLibIsNodeInList (ListHead, Entry));
Entry->ForwardLink = ListHead->ForwardLink; Entry->ForwardLink = ListHead->ForwardLink;
Entry->BackLink = ListHead; Entry->BackLink = ListHead;
@ -177,7 +177,7 @@ InsertTailList (
// //
// ASSERT List not too long and Entry is not one of the nodes of List // ASSERT List not too long and Entry is not one of the nodes of List
// //
ASSERT (!IsNodeInList (ListHead, Entry)); ASSERT (!InternalBaseLibIsNodeInList (ListHead, Entry));
Entry->ForwardLink = ListHead; Entry->ForwardLink = ListHead;
Entry->BackLink = ListHead->BackLink; Entry->BackLink = ListHead->BackLink;
@ -215,7 +215,7 @@ GetFirstNode (
// //
// ASSERT List not too long // ASSERT List not too long
// //
ASSERT (IsNodeInList (List, List)); ASSERT (InternalBaseLibIsNodeInList (List, List));
return List->ForwardLink; return List->ForwardLink;
} }
@ -252,7 +252,7 @@ GetNextNode (
// //
// ASSERT List not too long and Node is one of the nodes of List // ASSERT List not too long and Node is one of the nodes of List
// //
ASSERT (IsNodeInList (List, Node)); ASSERT (InternalBaseLibIsNodeInList (List, Node));
return Node->ForwardLink; return Node->ForwardLink;
} }
@ -285,7 +285,7 @@ IsListEmpty (
// //
// ASSERT List not too long // ASSERT List not too long
// //
ASSERT (IsNodeInList (ListHead, ListHead)); ASSERT (InternalBaseLibIsNodeInList (ListHead, ListHead));
return (BOOLEAN)(ListHead->ForwardLink == ListHead); return (BOOLEAN)(ListHead->ForwardLink == ListHead);
} }
@ -325,7 +325,7 @@ IsNull (
// //
// ASSERT List not too long and Node is one of the nodes of List // ASSERT List not too long and Node is one of the nodes of List
// //
ASSERT (IsNodeInList (List, Node)); ASSERT (InternalBaseLibIsNodeInList (List, Node));
return (BOOLEAN)(Node == List); return (BOOLEAN)(Node == List);
} }
@ -363,7 +363,7 @@ IsNodeAtEnd (
// //
// ASSERT List not too long and Node is one of the nodes of List // ASSERT List not too long and Node is one of the nodes of List
// //
ASSERT (IsNodeInList (List, Node)); ASSERT (InternalBaseLibIsNodeInList (List, Node));
return (BOOLEAN)(!IsNull (List, Node) && List->BackLink == Node); return (BOOLEAN)(!IsNull (List, Node) && List->BackLink == Node);
} }
@ -409,7 +409,7 @@ SwapListEntries (
// //
// ASSERT Entry1 and Entry2 are in the same linked list // ASSERT Entry1 and Entry2 are in the same linked list
// //
ASSERT (IsNodeInList (FirstEntry, SecondEntry)); ASSERT (InternalBaseLibIsNodeInList (FirstEntry, SecondEntry));
// //
// Ptr is the node pointed to by FirstEntry->ForwardLink // Ptr is the node pointed to by FirstEntry->ForwardLink

View File

@ -1325,7 +1325,7 @@ AsciiStrCmp (
**/ **/
CHAR8 CHAR8
EFIAPI EFIAPI
AsciiToUpper ( InternalBaseLibAsciiToUpper (
IN CHAR8 Chr IN CHAR8 Chr
) )
{ {
@ -1355,7 +1355,7 @@ InternalAsciiHexCharToUintn (
return Char - '0'; return Char - '0';
} }
return (UINTN) (10 + AsciiToUpper (Char) - 'A'); return (UINTN) (10 + InternalBaseLibAsciiToUpper (Char) - 'A');
} }
@ -1404,13 +1404,13 @@ AsciiStriCmp (
ASSERT (AsciiStrSize (FirstString)); ASSERT (AsciiStrSize (FirstString));
ASSERT (AsciiStrSize (SecondString)); ASSERT (AsciiStrSize (SecondString));
UpperFirstString = AsciiToUpper (*FirstString); UpperFirstString = InternalBaseLibAsciiToUpper (*FirstString);
UpperSecondString = AsciiToUpper (*SecondString); UpperSecondString = InternalBaseLibAsciiToUpper (*SecondString);
while ((*FirstString != '\0') && (UpperFirstString == UpperSecondString)) { while ((*FirstString != '\0') && (UpperFirstString == UpperSecondString)) {
FirstString++; FirstString++;
SecondString++; SecondString++;
UpperFirstString = AsciiToUpper (*FirstString); UpperFirstString = InternalBaseLibAsciiToUpper (*FirstString);
UpperSecondString = AsciiToUpper (*SecondString); UpperSecondString = InternalBaseLibAsciiToUpper (*SecondString);
} }
return UpperFirstString - UpperSecondString; return UpperFirstString - UpperSecondString;
@ -1858,7 +1858,7 @@ AsciiStrHexToUintn (
String++; String++;
} }
if (AsciiToUpper (*String) == 'X') { if (InternalBaseLibAsciiToUpper (*String) == 'X') {
ASSERT (*(String - 1) == '0'); ASSERT (*(String - 1) == '0');
if (*(String - 1) != '0') { if (*(String - 1) != '0') {
return 0; return 0;
@ -1953,7 +1953,7 @@ AsciiStrHexToUint64 (
String++; String++;
} }
if (AsciiToUpper (*String) == 'X') { if (InternalBaseLibAsciiToUpper (*String) == 'X') {
ASSERT (*(String - 1) == '0'); ASSERT (*(String - 1) == '0');
if (*(String - 1) != '0') { if (*(String - 1) != '0') {
return 0; return 0;