Change comment "bitwise inclusive OR" to "bitwise OR".

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6875 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
gikidy 2008-12-05 09:42:55 +00:00
parent 6cd8bf649c
commit 3c39934be2
1 changed files with 32 additions and 32 deletions

View File

@ -27,10 +27,10 @@
#include "DxeCpuIoLibInternal.h" #include "DxeCpuIoLibInternal.h"
/** /**
Reads an 8-bit I/O port, performs a bitwise inclusive OR, and writes the Reads an 8-bit I/O port, performs a bitwise OR, and writes the
result back to the 8-bit I/O port. result back to the 8-bit I/O port.
Reads the 8-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 8-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 8-bit I/O port specified by Port. The value written to the I/O result to the 8-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -186,7 +186,7 @@ IoBitFieldWrite8 (
Reads a bit field in an 8-bit port, performs a bitwise OR, and writes the Reads a bit field in an 8-bit port, performs a bitwise OR, and writes the
result back to the bit field in the 8-bit port. result back to the bit field in the 8-bit port.
Reads the 8-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 8-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 8-bit I/O port specified by Port. The value written to the I/O result to the 8-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -264,11 +264,11 @@ IoBitFieldAnd8 (
/** /**
Reads a bit field in an 8-bit port, performs a bitwise AND followed by a Reads a bit field in an 8-bit port, performs a bitwise AND followed by a
bitwise inclusive OR, and writes the result back to the bit field in the bitwise OR, and writes the result back to the bit field in the
8-bit port. 8-bit port.
Reads the 8-bit I/O port specified by Port, performs a bitwise AND followed Reads the 8-bit I/O port specified by Port, performs a bitwise AND followed
by a bitwise inclusive OR between the read result and the value specified by by a bitwise OR between the read result and the value specified by
AndData, and writes the result to the 8-bit I/O port specified by Port. The AndData, and writes the result to the 8-bit I/O port specified by Port. The
value written to the I/O port is returned. This function must guarantee that value written to the I/O port is returned. This function must guarantee that
all I/O read and write operations are serialized. Extra left bits in both all I/O read and write operations are serialized. Extra left bits in both
@ -307,10 +307,10 @@ IoBitFieldAndThenOr8 (
} }
/** /**
Reads a 16-bit I/O port, performs a bitwise inclusive OR, and writes the Reads a 16-bit I/O port, performs a bitwise OR, and writes the
result back to the 16-bit I/O port. result back to the 16-bit I/O port.
Reads the 16-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 16-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 16-bit I/O port specified by Port. The value written to the I/O result to the 16-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -466,7 +466,7 @@ IoBitFieldWrite16 (
Reads a bit field in a 16-bit port, performs a bitwise OR, and writes the Reads a bit field in a 16-bit port, performs a bitwise OR, and writes the
result back to the bit field in the 16-bit port. result back to the bit field in the 16-bit port.
Reads the 16-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 16-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 16-bit I/O port specified by Port. The value written to the I/O result to the 16-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -544,11 +544,11 @@ IoBitFieldAnd16 (
/** /**
Reads a bit field in a 16-bit port, performs a bitwise AND followed by a Reads a bit field in a 16-bit port, performs a bitwise AND followed by a
bitwise inclusive OR, and writes the result back to the bit field in the bitwise OR, and writes the result back to the bit field in the
16-bit port. 16-bit port.
Reads the 16-bit I/O port specified by Port, performs a bitwise AND followed Reads the 16-bit I/O port specified by Port, performs a bitwise AND followed
by a bitwise inclusive OR between the read result and the value specified by by a bitwise OR between the read result and the value specified by
AndData, and writes the result to the 16-bit I/O port specified by Port. The AndData, and writes the result to the 16-bit I/O port specified by Port. The
value written to the I/O port is returned. This function must guarantee that value written to the I/O port is returned. This function must guarantee that
all I/O read and write operations are serialized. Extra left bits in both all I/O read and write operations are serialized. Extra left bits in both
@ -587,10 +587,10 @@ IoBitFieldAndThenOr16 (
} }
/** /**
Reads a 32-bit I/O port, performs a bitwise inclusive OR, and writes the Reads a 32-bit I/O port, performs a bitwise OR, and writes the
result back to the 32-bit I/O port. result back to the 32-bit I/O port.
Reads the 32-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 32-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 32-bit I/O port specified by Port. The value written to the I/O result to the 32-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -746,7 +746,7 @@ IoBitFieldWrite32 (
Reads a bit field in a 32-bit port, performs a bitwise OR, and writes the Reads a bit field in a 32-bit port, performs a bitwise OR, and writes the
result back to the bit field in the 32-bit port. result back to the bit field in the 32-bit port.
Reads the 32-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 32-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 32-bit I/O port specified by Port. The value written to the I/O result to the 32-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -824,11 +824,11 @@ IoBitFieldAnd32 (
/** /**
Reads a bit field in a 32-bit port, performs a bitwise AND followed by a Reads a bit field in a 32-bit port, performs a bitwise AND followed by a
bitwise inclusive OR, and writes the result back to the bit field in the bitwise OR, and writes the result back to the bit field in the
32-bit port. 32-bit port.
Reads the 32-bit I/O port specified by Port, performs a bitwise AND followed Reads the 32-bit I/O port specified by Port, performs a bitwise AND followed
by a bitwise inclusive OR between the read result and the value specified by by a bitwise OR between the read result and the value specified by
AndData, and writes the result to the 32-bit I/O port specified by Port. The AndData, and writes the result to the 32-bit I/O port specified by Port. The
value written to the I/O port is returned. This function must guarantee that value written to the I/O port is returned. This function must guarantee that
all I/O read and write operations are serialized. Extra left bits in both all I/O read and write operations are serialized. Extra left bits in both
@ -867,10 +867,10 @@ IoBitFieldAndThenOr32 (
} }
/** /**
Reads a 64-bit I/O port, performs a bitwise inclusive OR, and writes the Reads a 64-bit I/O port, performs a bitwise OR, and writes the
result back to the 64-bit I/O port. result back to the 64-bit I/O port.
Reads the 64-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 64-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 64-bit I/O port specified by Port. The value written to the I/O result to the 64-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -1026,7 +1026,7 @@ IoBitFieldWrite64 (
Reads a bit field in a 64-bit port, performs a bitwise OR, and writes the Reads a bit field in a 64-bit port, performs a bitwise OR, and writes the
result back to the bit field in the 64-bit port. result back to the bit field in the 64-bit port.
Reads the 64-bit I/O port specified by Port, performs a bitwise inclusive OR Reads the 64-bit I/O port specified by Port, performs a bitwise OR
between the read result and the value specified by OrData, and writes the between the read result and the value specified by OrData, and writes the
result to the 64-bit I/O port specified by Port. The value written to the I/O result to the 64-bit I/O port specified by Port. The value written to the I/O
port is returned. This function must guarantee that all I/O read and write port is returned. This function must guarantee that all I/O read and write
@ -1104,11 +1104,11 @@ IoBitFieldAnd64 (
/** /**
Reads a bit field in a 64-bit port, performs a bitwise AND followed by a Reads a bit field in a 64-bit port, performs a bitwise AND followed by a
bitwise inclusive OR, and writes the result back to the bit field in the bitwise OR, and writes the result back to the bit field in the
64-bit port. 64-bit port.
Reads the 64-bit I/O port specified by Port, performs a bitwise AND followed Reads the 64-bit I/O port specified by Port, performs a bitwise AND followed
by a bitwise inclusive OR between the read result and the value specified by by a bitwise OR between the read result and the value specified by
AndData, and writes the result to the 64-bit I/O port specified by Port. The AndData, and writes the result to the 64-bit I/O port specified by Port. The
value written to the I/O port is returned. This function must guarantee that value written to the I/O port is returned. This function must guarantee that
all I/O read and write operations are serialized. Extra left bits in both all I/O read and write operations are serialized. Extra left bits in both
@ -1147,7 +1147,7 @@ IoBitFieldAndThenOr64 (
} }
/** /**
Reads an 8-bit MMIO register, performs a bitwise inclusive OR, and writes the Reads an 8-bit MMIO register, performs a bitwise OR, and writes the
result back to the 8-bit MMIO register. result back to the 8-bit MMIO register.
Reads the 8-bit MMIO register specified by Address, performs a bitwise Reads the 8-bit MMIO register specified by Address, performs a bitwise
@ -1386,11 +1386,11 @@ MmioBitFieldAnd8 (
/** /**
Reads a bit field in an 8-bit MMIO register, performs a bitwise AND followed Reads a bit field in an 8-bit MMIO register, performs a bitwise AND followed
by a bitwise inclusive OR, and writes the result back to the bit field in the by a bitwise OR, and writes the result back to the bit field in the
8-bit MMIO register. 8-bit MMIO register.
Reads the 8-bit MMIO register specified by Address, performs a bitwise AND Reads the 8-bit MMIO register specified by Address, performs a bitwise AND
followed by a bitwise inclusive OR between the read result and the value followed by a bitwise OR between the read result and the value
specified by AndData, and writes the result to the 8-bit MMIO register specified by AndData, and writes the result to the 8-bit MMIO register
specified by Address. The value written to the MMIO register is returned. specified by Address. The value written to the MMIO register is returned.
This function must guarantee that all MMIO read and write operations are This function must guarantee that all MMIO read and write operations are
@ -1429,7 +1429,7 @@ MmioBitFieldAndThenOr8 (
} }
/** /**
Reads a 16-bit MMIO register, performs a bitwise inclusive OR, and writes the Reads a 16-bit MMIO register, performs a bitwise OR, and writes the
result back to the 16-bit MMIO register. result back to the 16-bit MMIO register.
Reads the 16-bit MMIO register specified by Address, performs a bitwise Reads the 16-bit MMIO register specified by Address, performs a bitwise
@ -1668,11 +1668,11 @@ MmioBitFieldAnd16 (
/** /**
Reads a bit field in a 16-bit MMIO register, performs a bitwise AND followed Reads a bit field in a 16-bit MMIO register, performs a bitwise AND followed
by a bitwise inclusive OR, and writes the result back to the bit field in the by a bitwise OR, and writes the result back to the bit field in the
16-bit MMIO register. 16-bit MMIO register.
Reads the 16-bit MMIO register specified by Address, performs a bitwise AND Reads the 16-bit MMIO register specified by Address, performs a bitwise AND
followed by a bitwise inclusive OR between the read result and the value followed by a bitwise OR between the read result and the value
specified by AndData, and writes the result to the 16-bit MMIO register specified by AndData, and writes the result to the 16-bit MMIO register
specified by Address. The value written to the MMIO register is returned. specified by Address. The value written to the MMIO register is returned.
This function must guarantee that all MMIO read and write operations are This function must guarantee that all MMIO read and write operations are
@ -1711,7 +1711,7 @@ MmioBitFieldAndThenOr16 (
} }
/** /**
Reads a 32-bit MMIO register, performs a bitwise inclusive OR, and writes the Reads a 32-bit MMIO register, performs a bitwise OR, and writes the
result back to the 32-bit MMIO register. result back to the 32-bit MMIO register.
Reads the 32-bit MMIO register specified by Address, performs a bitwise Reads the 32-bit MMIO register specified by Address, performs a bitwise
@ -1950,11 +1950,11 @@ MmioBitFieldAnd32 (
/** /**
Reads a bit field in a 32-bit MMIO register, performs a bitwise AND followed Reads a bit field in a 32-bit MMIO register, performs a bitwise AND followed
by a bitwise inclusive OR, and writes the result back to the bit field in the by a bitwise OR, and writes the result back to the bit field in the
32-bit MMIO register. 32-bit MMIO register.
Reads the 32-bit MMIO register specified by Address, performs a bitwise AND Reads the 32-bit MMIO register specified by Address, performs a bitwise AND
followed by a bitwise inclusive OR between the read result and the value followed by a bitwise OR between the read result and the value
specified by AndData, and writes the result to the 32-bit MMIO register specified by AndData, and writes the result to the 32-bit MMIO register
specified by Address. The value written to the MMIO register is returned. specified by Address. The value written to the MMIO register is returned.
This function must guarantee that all MMIO read and write operations are This function must guarantee that all MMIO read and write operations are
@ -1993,7 +1993,7 @@ MmioBitFieldAndThenOr32 (
} }
/** /**
Reads a 64-bit MMIO register, performs a bitwise inclusive OR, and writes the Reads a 64-bit MMIO register, performs a bitwise OR, and writes the
result back to the 64-bit MMIO register. result back to the 64-bit MMIO register.
Reads the 64-bit MMIO register specified by Address, performs a bitwise Reads the 64-bit MMIO register specified by Address, performs a bitwise
@ -2232,11 +2232,11 @@ MmioBitFieldAnd64 (
/** /**
Reads a bit field in a 64-bit MMIO register, performs a bitwise AND followed Reads a bit field in a 64-bit MMIO register, performs a bitwise AND followed
by a bitwise inclusive OR, and writes the result back to the bit field in the by a bitwise OR, and writes the result back to the bit field in the
64-bit MMIO register. 64-bit MMIO register.
Reads the 64-bit MMIO register specified by Address, performs a bitwise AND Reads the 64-bit MMIO register specified by Address, performs a bitwise AND
followed by a bitwise inclusive OR between the read result and the value followed by a bitwise OR between the read result and the value
specified by AndData, and writes the result to the 64-bit MMIO register specified by AndData, and writes the result to the 64-bit MMIO register
specified by Address. The value written to the MMIO register is returned. specified by Address. The value written to the MMIO register is returned.
This function must guarantee that all MMIO read and write operations are This function must guarantee that all MMIO read and write operations are