Home
last modified time | relevance | path

Searched refs:hasNeon (Results 1 – 12 of 12) sorted by relevance

/dports/net/mediastreamer/mediastreamer-2.16.1/java/src/org/linphone/mediastream/
H A DVersion.java60 private static Boolean hasNeon; field in Version
133 public static boolean hasNeon(){ in hasNeon() method in Version
134 if (hasNeon == null) hasNeon = nativeHasNeon(); in hasNeon()
135 return hasNeon; in hasNeon()
141 return isX86() || isArm64() || (!isArmv5() && hasNeon()); in hasFastCpuWithAsmOptim()
161 if (isArmv7()) sb.append("Has neon: ").append(Boolean.toString(hasNeon())).append("\n"); in dumpCapabilities()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_core/system/
H A Djuce_SystemStats.cpp100 hasNeon = false; member
133 bool SystemStats::hasNeon() noexcept { return getCPUInformation().hasNeon; } in hasNeon() function in juce::SystemStats
H A Djuce_SystemStats.h195 …static bool hasNeon() noexcept; /**< Returns true if ARM NEON instructions are availabl…
/dports/audio/carla/Carla-2.4.1/source/modules/juce_core/system/
H A Djuce_SystemStats.cpp100 hasNeon = false; member
133 bool SystemStats::hasNeon() noexcept { return getCPUInformation().hasNeon; } in hasNeon() function in juce::SystemStats
H A Djuce_SystemStats.h194 …static bool hasNeon() noexcept; /**< Returns true if ARM NEON instructions are availabl…
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_core/system/
H A Djuce_SystemStats.cpp100 hasNeon = false; member
133 bool SystemStats::hasNeon() noexcept { return getCPUInformation().hasNeon; } in hasNeon() function in juce::SystemStats
H A Djuce_SystemStats.h195 …static bool hasNeon() noexcept; /**< Returns true if ARM NEON instructions are availabl…
/dports/net/mediastreamer/mediastreamer-2.16.1/src/voip/
H A Dmsvideo.c713 static int hasNeon = -1; variable
715 static int hasNeon = 1; variable
717 static int hasNeon = 0; variable
733 if (hasNeon == -1) { in copy_ycbcrbiplanar_to_true_yuv_with_rotation_and_down_scale_by_2()
734hasNeon = (((android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM) && ((android_getCpuFeatures() & AND… in copy_ycbcrbiplanar_to_true_yuv_with_rotation_and_down_scale_by_2()
756 if (hasNeon) { in copy_ycbcrbiplanar_to_true_yuv_with_rotation_and_down_scale_by_2()
781 if (hasNeon) { in copy_ycbcrbiplanar_to_true_yuv_with_rotation_and_down_scale_by_2()
805 if (hasNeon) { in copy_ycbcrbiplanar_to_true_yuv_with_rotation_and_down_scale_by_2()
820 if (hasNeon) { in copy_ycbcrbiplanar_to_true_yuv_with_rotation_and_down_scale_by_2()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_core/native/
H A Djuce_android_SystemStats.cpp199 hasNeon = ((cpuFeatures & ANDROID_CPU_ARM_FEATURE_NEON) != 0); in initialise()
204 hasNeon = true; in initialise()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_core/native/
H A Djuce_android_SystemStats.cpp199 hasNeon = ((cpuFeatures & ANDROID_CPU_ARM_FEATURE_NEON) != 0); in initialise()
204 hasNeon = true; in initialise()
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_core/native/
H A Djuce_android_SystemStats.cpp199 hasNeon = ((cpuFeatures & ANDROID_CPU_ARM_FEATURE_NEON) != 0); in initialise()
204 hasNeon = true; in initialise()
/dports/devel/juce/JUCE-f37e9a1/examples/Utilities/
H A DSystemInfoDemo.h174 … << "CPU has Neon: " << (SystemStats::hasNeon() ? "yes" : "no") << newLine in getAllSystemInfo()