Go to the documentation of this file. 8 #ifndef BOTAN_SIMD_32_H__ 9 #define BOTAN_SIMD_32_H__ 11 #include <botan/types.h> 13 #if defined(BOTAN_HAS_SIMD_SSE2) 14 #include <botan/internal/simd_sse2.h> 15 namespace Botan {
typedef SIMD_SSE2 SIMD_32; }
17 #elif defined(BOTAN_HAS_SIMD_ALTIVEC) 18 #include <botan/internal/simd_altivec.h> 19 namespace Botan {
typedef SIMD_Altivec SIMD_32; }
21 #elif defined(BOTAN_HAS_SIMD_SCALAR) 22 #include <botan/internal/simd_scalar.h> 23 namespace Botan {
typedef SIMD_Scalar SIMD_32; }
26 #error "No SIMD module defined"