Home | History | Annotate | Download | only in core

Lines Matching defs:neon

20 // cpu-features helper library to detect NEON at runtime. See
49 // the ARM NEON instruction set. This implementation is Linux-specific.
68 SkDebugf("Forcing ARM Neon mode to full!\n");
72 SkDebugf("Disabling ARM NEON mode\n");
86 // Instead, we must parse /proc/cpuinfo and look for the 'neon' feature.
91 Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3
104 // If we fail any of the following, assume we don't have NEON instructions
155 // Now find an instance of 'neon' in the flags list. We want to
156 // ensure it's only 'neon' and not something fancy like 'noneon'
158 const char neon[] = " neon";
159 const size_t neon_len = sizeof(neon)-1;
161 neon, neon_len);
169 // Fine, we support Arm NEON !
177 SkDebugf("Device supports ARM NEON instructions!\n");
179 SkDebugf("Device does NOT support ARM NEON instructions!\n");