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

  /external/boringssl/src/crypto/
cpu-intel.c 115 // Currently only XCR0 is defined by Intel so |xcr| should always be zero.
229 uint64_t xcr0 = 0; local
231 // XCR0 may only be queried if the OSXSAVE bit is set.
232 xcr0 = OPENSSL_xgetbv(0);
235 if ((xcr0 & 6) != 6) {
248 if ((xcr0 & 0xe6) != 0xe6) {
  /external/libvpx/libvpx/third_party/libyuv/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/libyuv/files/source/
cpu_id.cc 109 // mov xcr0, eax
121 uint32 xcr0 = 0u; local
123 xcr0 = (uint32)(_xgetbv(0)); // VS2010 SP1 required.
125 asm(".byte 0x0f, 0x01, 0xd0" : "=a"(xcr0) : "c"(0) : "%edx");
127 return xcr0;

Completed in 122 milliseconds