5#ifndef RUNTIME_PLATFORM_UNALIGNED_H_
6#define RUNTIME_PLATFORM_UNALIGNED_H_
16 memcpy(
reinterpret_cast<void*
>(&
value),
17 reinterpret_cast<const void*
>(ptr),
sizeof(
value));
23 memcpy(
reinterpret_cast<void*
>(ptr),
24 reinterpret_cast<const void*
>(&
value),
sizeof(
value));
static T LoadUnaligned(const T *ptr)
static void StoreUnaligned(T *ptr, T value)