Home | History | Annotate | Download | only in jni

Lines Matching defs:features

18 #include <cpu-features.h>
50 uint64_t features = android_getCpuFeatures();
51 printf( "Supported ARM features:\n");
53 if ((features & ANDROID_CPU_ARM_FEATURE_## name) != 0) { \
81 uint64_t features = android_getCpuFeatures();
82 printf( "Supported x86 features:\n");
84 if ((features & ANDROID_CPU_X86_FEATURE_## name) != 0) { \
95 // Check that the CPU features mask is empty for anything that isn't
99 uint64_t features = android_getCpuFeatures();
100 if (features != 0) {
101 printf("ERROR: Unexpected CPU features mask: %016" PRIX64 "\n",
102 features);