Home
last modified time | relevance | path

Searched refs:xgetbv (Results 1 – 7 of 7) sorted by relevance

/external/webp/src/dsp/
Dcpu.c63 static WEBP_INLINE uint64_t xgetbv(void) { in xgetbv() function
75 #define xgetbv() _xgetbv(0) macro
77 static WEBP_INLINE uint64_t xgetbv(void) { in xgetbv() function
89 #define xgetbv() 0U // no AVX for older x64 or unrecognized toolchains. macro
118 return (xgetbv() & 0x6) == 0x6; in x86CPUInfo()
/external/libvpx/libvpx/vpx_ports/
Dx86.h110 static INLINE uint64_t xgetbv(void) { in xgetbv() function
122 #define xgetbv() _xgetbv(0) macro
124 static INLINE uint64_t xgetbv(void) { in xgetbv() function
136 #define xgetbv() 0U // no AVX for older x64 or unrecognized toolchains. macro
200 if ((xgetbv() & 0x6) == 0x6) { in x86_simd_caps()
/external/skia/src/core/
DSkOpts.cpp41 static uint64_t xgetbv(uint32_t xcr) { return _xgetbv(xcr); } in xgetbv() function
52 static uint64_t xgetbv(uint32_t xcr) { in xgetbv() function
126 (xgetbv(0) & 6 ) == 6 ){ // and check the OS supports XSAVE. in init()
/external/valgrind/memcheck/tests/amd64/
Dxsave-avx.c159 static void xgetbv ( UInt* eax, UInt* edx, UInt ecx_in ) in xgetbv() function
184 xgetbv(&eax, &edx, 0); in check_for_xsave()
/external/clang/test/CodeGen/
Dms-inline-asm.c545 void xgetbv() {
546 __asm xgetbv
/external/llvm/test/MC/X86/
Dx86-64.s1042 xgetbv // CHECK: xgetbv # encoding: [0x0f,0x01,0xd0] label
/external/llvm/lib/Target/X86/
DX86InstrSystem.td477 def XGETBV : I<0x01, MRM_D0, (outs), (ins), "xgetbv", []>, TB;