您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
324B

  1. #pragma once
  2. extern "C" {
  3. /**
  4. * Gets the square root of num four times and writes it to @res
  5. *
  6. * @param num: the number of which the square root shall be taken
  7. * @param res: where the 4 results shall be written
  8. */
  9. void _AVX(float num, void* res);
  10. /**
  11. * Just a wrapper around RDRAND
  12. */
  13. uint32_t _RDRAND(void);
  14. }