Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

15 lines
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. }