violates C standard, by lying on structure alignment. Only use if no other choice to achieve best performance on target platform */
| 398 | /* violates C standard, by lying on structure alignment. |
| 399 | Only use if no other choice to achieve best performance on target platform */ |
| 400 | MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } |
| 401 | MEM_STATIC U32 MEM_read32(const void* memPtr) { return *(const U32*) memPtr; } |
| 402 | MEM_STATIC U64 MEM_read64(const void* memPtr) { return *(const U64*) memPtr; } |
| 403 | MEM_STATIC size_t MEM_readST(const void* memPtr) { return *(const size_t*) memPtr; } |
no test coverage detected