Home | History | Annotate | Download | only in core

Lines Matching defs:neon

24 // the ARM NEON instruction set. This implementation is Linux-specific.
26 // If we fail any of the following, assume we don't have NEON instructions
30 // Use the Android NDK's cpu-features helper library to detect NEON at runtime.
39 // Instead, we must parse /proc/cpuinfo and look for the 'neon' feature.
44 Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3
104 // Now find an instance of 'neon' in the flags list. We want to
105 // ensure it's only 'neon' and not something fancy like 'noneon'
107 const char neon[] = " neon";
108 const size_t neon_len = sizeof(neon)-1;
110 neon, neon_len);
118 // Fine, we support Arm NEON !
126 SkDEBUGF(("Device supports ARM NEON instructions!\n"));
128 SkDEBUGF(("Device does NOT support ARM NEON instructions!\n"));