HomeSort by relevance Sort by last modified time
    Searched refs:xcr0 (Results 1 - 3 of 3) sorted by null

  /external/libyuv/files/source/
cpu_id.cc 107 // mov xcr0, eax
120 uint32 xcr0 = 0u; local
122 xcr0 = (uint32)(_xgetbv(0)); // VS2010 SP1 required.
124 asm(".byte 0x0f, 0x01, 0xd0" : "=a" (xcr0) : "c" (0) : "%edx");
126 return xcr0;
  /external/libvpx/libvpx/third_party/libyuv/source/
cpu_id.cc 108 uint32 xcr0 = 0u; local
110 xcr0 = (uint32)(_xgetbv(0)); // VS2010 SP1 required.
115 mov xcr0, eax local
118 asm(".byte 0x0f, 0x01, 0xd0" : "=a" (xcr0) : "c" (0) : "%edx");
120 return((xcr0 & 6) == 6); // Is ymm saved?
  /external/boringssl/src/crypto/
cpu-intel.c 113 * Currently only XCR0 is defined by Intel so |xcr| should always be zero. */
219 uint64_t xcr0 = 0; local
221 /* XCR0 may only be queried if the OSXSAVE bit is set. */
222 xcr0 = OPENSSL_xgetbv(0);
225 if ((xcr0 & 6) != 6) {

Completed in 128 milliseconds