Home | History | Annotate | Download | only in opts

Lines Matching defs:level

30 /* Function to get the CPU SSE-level in runtime, for different compilers. */
71 /* Fetch the SIMD level directly from the CPU, at run-time.
78 int* level = new int;
81 *level = SK_CPU_SSE_LEVEL_SSE42;
83 *level = SK_CPU_SSE_LEVEL_SSE41;
85 *level = SK_CPU_SSE_LEVEL_SSSE3;
87 *level = SK_CPU_SSE_LEVEL_SSE2;
89 *level = 0;
91 return level;
96 /* Verify that the requested SIMD level is supported in the build.