Writes a 64-bit value to memory that may be unaligned. This function writes the 64-bit value specified by Value to Buffer. Value is returned. The function guarantees that the write 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. @param Value The 64-bit value to write t
| 204 | |
| 205 | **/ |
| 206 | UINT64 |
| 207 | EFIAPI |
| 208 | WriteUnaligned64 ( |
| 209 | OUT UINT64 *Buffer, |
| 210 | IN UINT64 Value |
| 211 | ) |
| 212 | { |
| 213 | ASSERT (Buffer != NULL); |
| 214 | |
| 215 | return *Buffer = Value; |
| 216 | } |
no outgoing calls
no test coverage detected