arm_features.h 359 B

12345678910111213141516
  1. /* arm_features.h -- check for ARM features.
  2. * For conditions of distribution and use, see copyright notice in zlib.h
  3. */
  4. #ifndef ARM_FEATURES_H_
  5. #define ARM_FEATURES_H_
  6. struct arm_cpu_features {
  7. int has_simd;
  8. int has_neon;
  9. int has_crc32;
  10. };
  11. void Z_INTERNAL arm_check_features(struct arm_cpu_features *features);
  12. #endif /* ARM_FEATURES_H_ */