/src/sys/crypto/chacha/arch/arm/ |
chacha_neon_impl.c | 135 /* Verify that the CPU supports NEON. */ 160 int neon; local in function:chacha_probe_neon 161 size_t neonlen = sizeof neon; 162 if (sysctlbyname("machdep.neon_present", &neon, &neonlen, NULL, 0)) 164 if (!neon) 173 .ci_name = "ARM NEON ChaCha",
|
/src/sys/crypto/aes/arch/arm/ |
aes_neon_impl.c | 188 /* Verify that the CPU supports NEON. */ 213 int neon; local in function:aes_neon_probe 214 size_t neonlen = sizeof neon; 215 if (0 && sysctlbyname("machdep.neon_present", &neon, &neonlen, NULL, 0)) 217 if (0 && !neon) 230 .ai_name = "ARM NEON vpaes",
|