/third_party/ffmpeg/libavutil/x86/ |
H A D | cpu.h | 39 #define X86_SSSE3(flags) CPUEXT(flags, SSSE3) 40 #define X86_SSSE3_FAST(flags) CPUEXT_FAST(flags, SSSE3) 41 #define X86_SSSE3_SLOW(flags) CPUEXT_SLOW(flags, SSSE3) 65 #define EXTERNAL_SSSE3(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, SSSE3) 66 #define EXTERNAL_SSSE3_FAST(flags) CPUEXT_SUFFIX_FAST(flags, _EXTERNAL, SSSE3) 67 #define EXTERNAL_SSSE3_SLOW(flags) CPUEXT_SUFFIX_SLOW(flags, _EXTERNAL, SSSE3) 96 #define INLINE_SSSE3(flags) CPUEXT_SUFFIX(flags, _INLINE, SSSE3) 97 #define INLINE_SSSE3_FAST(flags) CPUEXT_SUFFIX_FAST(flags, _INLINE, SSSE3) 98 #define INLINE_SSSE3_SLOW(flags) CPUEXT_SUFFIX_SLOW(flags, _INLINE, SSSE3)
|
H A D | x86inc.asm | 664 ; (SSSE3 is a sufficient condition to know that your cpu doesn't have this problem.) 1041 ; implementations, e.g. the SSE2 and SSSE3 versions may have different permutations.
|
/third_party/skia/src/core/ |
H A D | SkCpu.h | 18 SSSE3 = 1 << 3, enumerator 74 features |= SSSE3; in Supports() 97 features &= (SSE1 | SSE2 | SSE3 | SSSE3 | SSE41 | SSE42 | AVX); in Supports() 99 features &= (SSE1 | SSE2 | SSE3 | SSSE3 | SSE41); in Supports()
|
H A D | SkCpu.cpp | 46 if (abcd[2] & (1<< 9)) { features |= SkCpu::SSSE3; } in read_cpu_features()
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | CPUID.hpp | 59 static bool SSSE3; member in sw::CPUID 118 return SSSE3 && enableSSSE3; in supportsSSSE3()
|
H A D | CPUID.cpp | 37 bool CPUID::SSSE3 = detectSSSE3(); member in sw::CPUID 220 return SSSE3 = (registers[2] & 0x00000200) != 0; in detectSSSE3()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | cpu-features.h | 19 SSSE3, enumerator
|
/third_party/node/deps/v8/src/codegen/shared-ia32-x64/ |
H A D | macro-assembler-shared-ia32-x64.h | 82 CpuFeatureScope sse_scope(this, SSSE3); in Pshufb() 199 AvxHelper<Dst, Arg, Args...>{this, base::Optional<CpuFeature>(SSSE3)} \ 832 CpuFeatureScope sse_scope(this, SSSE3); in I16x8ExtAddPairwiseI8x16S() 853 CpuFeatureScope sse_scope(this, SSSE3); in I16x8ExtAddPairwiseI8x16U() 880 CpuFeatureScope sse_scope(this, SSSE3); in I8x16Swizzle() 940 CpuFeatureScope sse_scope(this, SSSE3); in I8x16Popcnt()
|
H A D | macro-assembler-shared-ia32-x64.cc | 370 CpuFeatureScope ssse3_scope(this, SSSE3); in I8x16SplatPreAvx2()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86Subtarget.h | 64 NoSSE, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512F enumerator 79 /// SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or none supported. 587 bool hasSSSE3() const { return X86SSELevel >= SSSE3; } in hasSSSE3()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.cc | 128 if (FLAG_wasm_simd_ssse3_codegen && IsSupported(SSSE3)) return true; in SupportsWasmSimd128() 143 if (cpu.has_ssse3()) SetSupported(SSSE3); in ProbeImpl() 166 if (!FLAG_enable_ssse3 || !IsSupported(SSE3)) SetUnsupported(SSSE3); in ProbeImpl() 167 if (!FLAG_enable_sse4_1 || !IsSupported(SSSE3)) SetUnsupported(SSE4_1); in ProbeImpl() 183 "SSE3=%d SSSE3=%d SSE4_1=%d AVX=%d AVX2=%d FMA3=%d BMI1=%d BMI2=%d " in PrintFeatures() 186 CpuFeatures::IsSupported(SSE3), CpuFeatures::IsSupported(SSSE3), in PrintFeatures() 331 EnableCpuFeature(SSSE3); in Assembler() 333 if (CpuFeatures::IsSupported(SSSE3)) { in Assembler() 2697 DCHECK(IsEnabled(SSSE3)); in palignr() 3185 DCHECK(IsEnabled(SSSE3)); in ssse3_instr() [all...] |
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | assembler-x64.cc | 81 if (FLAG_wasm_simd_ssse3_codegen && IsSupported(SSSE3)) return true; in SupportsWasmSimd128() 97 if (cpu.has_ssse3()) SetSupported(SSSE3); in ProbeImpl() 122 if (!FLAG_enable_ssse3 || !IsSupported(SSE3)) SetUnsupported(SSSE3); in ProbeImpl() 123 if (!FLAG_enable_sse4_1 || !IsSupported(SSSE3)) SetUnsupported(SSE4_1); in ProbeImpl() 144 "SSE3=%d SSSE3=%d SSE4_1=%d SSE4_2=%d SAHF=%d AVX=%d AVX2=%d FMA3=%d " in PrintFeatures() 149 CpuFeatures::IsSupported(SSE3), CpuFeatures::IsSupported(SSSE3), in PrintFeatures() 360 EnableCpuFeature(SSSE3); in Assembler() 362 if (CpuFeatures::IsSupported(SSSE3)) { in Assembler() 4183 DCHECK(IsEnabled(SSSE3)); in ssse3_instr() 4195 DCHECK(IsEnabled(SSSE3)); in ssse3_instr() [all...] |
/third_party/ffmpeg/libavcodec/x86/ |
H A D | h264_chromamc.asm | 2 ;* MMX/SSSE3-optimized functions for H.264 chroma MC
|
H A D | h264_qpel_8bit.asm | 2 ;* MMX/SSE2/SSSE3-optimized H.264 QPEL code
|
/third_party/ffmpeg/ |
H A D | configure | 439 --disable-ssse3 disable SSSE3 optimizations 6118 # check whether binutils is new enough to compile SSSE3/MMXEXT 7502 echo "SSSE3 enabled ${ssse3-no}"
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
H A D | code-generator-ia32.cc | 3166 ASSEMBLE_SIMD_IMM_SHUFFLE(palignr, SSSE3, i.InputInt8(2)); in AssembleArchInstruction()
|