Searched defs:xcr (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/core/
H A DSkCpu.cpp20 static uint64_t xgetbv(uint32_t xcr) { return _xgetbv(xcr); } argument
31 static uint64_t xgetbv(uint32_t xcr) { argument
33 __asm__ __volatile__ ( "xgetbv" : "=a"(eax), "=d"(edx) : "c"(xcr));
/external/libchrome/base/
H A Dcpu.cc84 // Currently only XCR0 is defined by Intel so |xcr| should always be zero.
85 uint64_t _xgetbv(uint32_t xcr) { argument
89 "xgetbv" : "=a"(eax), "=d"(edx) : "c"(xcr));
/external/boringssl/src/crypto/
H A Dcpu-intel.c115 * Currently only XCR0 is defined by Intel so |xcr| should always be zero. */
116 static uint64_t OPENSSL_xgetbv(uint32_t xcr) { argument
118 return (uint64_t)_xgetbv(xcr);
121 __asm__ volatile ("xgetbv" : "=a"(eax), "=d"(edx) : "c"(xcr));
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dkvm.h341 __u32 xcr; member in struct:kvm_xcr
/external/v8/src/ia32/
H A Dassembler-ia32.cc66 V8_INLINE uint64_t _xgetbv(unsigned int xcr) { argument
72 __asm__ volatile(".byte 0x0f, 0x01, 0xd0" : "=a"(eax), "=d"(edx) : "c"(xcr));
/external/v8/src/x64/
H A Dassembler-x64.cc32 V8_INLINE uint64_t _xgetbv(unsigned int xcr) { argument
38 __asm__ volatile(".byte 0x0f, 0x01, 0xd0" : "=a"(eax), "=d"(edx) : "c"(xcr));

Completed in 174 milliseconds