Reads a 64-bit value from memory that may be unaligned. This function returns the 64-bit value pointed to by Buffer. The function guarantees that the read operation does not produce an alignment fault. If the Buffer is NULL, then ASSERT(). @param Buffer A pointer to a 64-bit value that may be unaligned. @return The 64-bit value read from Buffer. **/
| 178 | |
| 179 | **/ |
| 180 | UINT64 |
| 181 | EFIAPI |
| 182 | ReadUnaligned64 ( |
| 183 | IN CONST UINT64 *Buffer |
| 184 | ) |
| 185 | { |
| 186 | ASSERT (Buffer != NULL); |
| 187 | |
| 188 | return *Buffer; |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | Writes a 64-bit value to memory that may be unaligned. |
no outgoing calls
no test coverage detected