D | Types.hpp | 40 #define ALIGN(bytes, type) __declspec(align(bytes)) type macro 43 #define ALIGN(bytes, type) type __attribute__((aligned(bytes))) macro 48 typedef ALIGN(1, uint8_t) byte; 49 typedef ALIGN(2, uint16_t) word; 50 typedef ALIGN(4, uint32_t) dword; 51 typedef ALIGN(8, uint64_t) qword; 52 typedef ALIGN(16, uint64_t) qword2[2]; typedef 53 typedef ALIGN(4, uint8_t) byte4[4]; typedef 54 typedef ALIGN(8, uint8_t) byte8[8]; typedef 55 typedef ALIGN(16, uint8_t) byte16[16]; typedef [all …]
|