HomeSort by relevance Sort by last modified time
    Searched refs:xgetbv (Results 1 - 25 of 41) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
xsave.s 7 xgetbv
xsave.d 12 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
xsave-intel.d 14 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
arch-10.s 30 xgetbv label
x86-64-arch-2.s 30 xgetbv label
arch-10-1.l 66 [ ]*30[ ]+xgetbv
arch-10-2.l 65 [ ]*30[ ]+xgetbv
arch-10-3.l 61 [ ]*30[ ]+xgetbv
arch-10-4.l 59 [ ]*30[ ]+xgetbv
x86-64-arch-2-1.l 60 [ ]*30[ ]+xgetbv
x86-64-arch-2-2.l 59 [ ]*30[ ]+xgetbv
x86-64-xsave.s 4 xgetbv
arch-10-bdver1.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
arch-10-bdver2.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
arch-10-bdver3.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
arch-10-bdver4.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
arch-10-btver1.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
arch-10-btver2.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
x86-64-arch-2-bdver1.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
x86-64-arch-2-bdver2.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
x86-64-arch-2-bdver3.d 24 [ ]*[a-f0-9]+: 0f 01 d0 xgetbv
  /external/webp/src/dsp/
cpu.c 61 // NaCl has no support for xgetbv or the raw opcode.
63 static WEBP_INLINE uint64_t xgetbv(void) { function
66 // Use the raw opcode for xgetbv for compatibility with older toolchains.
75 #define xgetbv() _xgetbv(0) macro
77 static WEBP_INLINE uint64_t xgetbv(void) { function
81 // Use the raw opcode for xgetbv for compatibility with older toolchains.
89 #define xgetbv() 0U // no AVX for older x64 or unrecognized toolchains. macro
118 return (xgetbv() & 0x6) == 0x6;
  /external/libvpx/libvpx/vpx_ports/
x86.h 108 // NaCl has no support for xgetbv or the raw opcode.
110 static INLINE uint64_t xgetbv(void) { function
113 // Use the raw opcode for xgetbv for compatibility with older toolchains.
122 #define xgetbv() _xgetbv(0) macro
124 static INLINE uint64_t xgetbv(void) { function
128 // Use the raw opcode for xgetbv for compatibility with older toolchains.
136 #define xgetbv() 0U // no AVX for older x64 or unrecognized toolchains. macro
200 if ((xgetbv() & 0x6) == 0x6) {
  /external/skia/src/core/
SkOpts.cpp 41 static uint64_t xgetbv(uint32_t xcr) { return _xgetbv(xcr); } function
52 static uint64_t xgetbv(uint32_t xcr) {
54 __asm__ __volatile__ ( "xgetbv" : "=a"(eax), "=d"(edx) : "c"(xcr));
126 (xgetbv(0) & 6 ) == 6 ){ // and check the OS supports XSAVE.
  /external/valgrind/memcheck/tests/amd64/
xsave-avx.c 159 static void xgetbv ( UInt* eax, UInt* edx, UInt ecx_in ) function
162 asm volatile ("xgetbv"
184 xgetbv(&eax, &edx, 0);
185 //fprintf(stderr, "xgetbv(0) = %u:%u\n", edx, eax);

Completed in 627 milliseconds

1 2