HomeSort by relevance Sort by last modified time
    Searched defs:eax (Results 26 - 50 of 303) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon58890
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon59666
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon60443
  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon61213
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon61980
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon62759
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon63537
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon64313
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon65090
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon65860
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon66627
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon67406
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon68184
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon68960
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
toshiba.h 26 unsigned int eax; member in struct:__anon69737
  /external/autotest/client/profilers/powertop/src/
intelcstates.c 42 static void cpuid( unsigned int *eax,
56 : "=a" (*eax),
60 : "0" (*eax),
83 unsigned int eax, ebx, ecx, edx; local
137 eax = 5;
139 cpuid(&eax, &ebx, &ecx, &edx);
  /external/clang/test/CodeGenCXX/
ms-inline-asm-return.cpp 4 // Check that we take EAX or EAX:EDX and return it from these functions for MSVC
11 mov eax, 1 local
16 // CHECK: %[[r:[^ ]*]] = call i64 asm sideeffect inteldialect "mov eax, $$1\0A\09mov edx, $$1", "=A,~{eax},{{.*}}"
21 mov eax, 1 local
26 // CHECK: %[[r:[^ ]*]] = call i32 asm sideeffect inteldialect "mov eax, $$1\0A\09mov edx, $$1", "={eax},~{eax},{{.*}}"
31 mov eax, local
42 mov eax, 1 local
53 mov eax, 1 local
69 mov eax, 0x01010101 local
83 mov eax, 0x01010101 local
96 __asm xor eax, eax local
    [all...]
  /external/valgrind/VEX/useful/
cpuid.c 7 void cpuid ( UInt* eax, UInt* ebx, UInt* ecx, UInt* edx,
14 *eax = a; *ebx = b; *ecx = c; *edx = d;
21 UInt eax, ebx, ecx, edx; local
25 cpuid(&eax,&ebx,&ecx,&edx, 0,0);
26 maxidx = eax;
38 cpuid(&eax,&ebx,&ecx,&edx, i,0);
41 cpuid(&eax,&ebx,&ecx,&edx, i,ecx_in);
50 cpuid(&eax,&ebx,&ecx,&edx, 0x80000000,0);
51 maxextidx = eax;
53 cpuid(&eax,&ebx,&ecx,&edx, i,0)
    [all...]
  /external/boringssl/src/crypto/
cpu-intel.c 79 /* OPENSSL_cpuid runs the cpuid instruction. |leaf| is passed in as EAX and ECX
80 * is set to zero. It writes EAX, EBX, ECX, and EDX to |*out_eax| through
118 uint32_t eax, edx;
119 __asm__ volatile ("xgetbv" : "=a"(eax), "=d"(edx) : "c"(xcr));
120 return (((uint64_t)edx) << 32) | eax;
145 uint32_t eax, ebx, ecx, edx; local
146 OPENSSL_cpuid(&eax, &ebx, &ecx, &edx, 0);
148 uint32_t num_ids = eax;
161 OPENSSL_cpuid(&eax, &ebx, &ecx, &edx, 0x80000000);
162 uint32_t num_extended_ids = eax;
    [all...]
  /external/clang/test/CodeGen/
ms-inline-asm.cpp 19 __asm mov eax, Foo ::ptr local
20 __asm mov eax, Foo :: Bar :: ptr local
21 __asm mov eax, [Foo:: ptr] local
22 __asm mov eax, dword ptr [Foo :: ptr] local
23 __asm mov eax, dword ptr [Foo :: ptr] local
25 // CHECK: call void asm sideeffect inteldialect "mov eax, dword ptr $0\0A\09mov eax, dword ptr $1\0A\09mov eax, dword ptr $2\0A\09mov eax, dword ptr $3\0A\09mov eax, dword ptr $4", "*m,*m,*m,*m,*m,~{eax},~{dirflag},~{fpsr},~{flags}"(i32** @_ZN3Foo3ptrE, i32** @_Z (…)
31 __asm mov eax, offset Foo::ptr local
32 __asm mov eax, offset Foo::Bar::ptr local
39 __asm mov eax, LENGTH Foo::ptr local
40 __asm mov eax, LENGTH Foo::Bar::ptr local
41 __asm mov eax, LENGTH Foo::arr local
42 __asm mov eax, LENGTH Foo::Bar::arr local
44 __asm mov eax, TYPE Foo::ptr local
45 __asm mov eax, TYPE Foo::Bar::ptr local
46 __asm mov eax, TYPE Foo::arr local
47 __asm mov eax, TYPE Foo::Bar::arr local
49 __asm mov eax, SIZE Foo::ptr local
50 __asm mov eax, SIZE Foo::Bar::ptr local
51 __asm mov eax, SIZE Foo::arr local
52 __asm mov eax, SIZE Foo::Bar::arr local
68 __asm mov eax, x; local
69 __asm mov y, eax; local
101 __asm mov eax, [eax].A.b local
111 __asm mov eax, [eax].A.b local
121 __asm mov eax, [eax].A.b variable
    [all...]
  /external/clang/test/Sema/
ms-inline-asm.c 11 mov eax, eax local
16 mov eax, 1+=2 // expected-error {{unknown token in expression}} local
20 mov eax, 1+++ // expected-error {{unknown token in expression}} local
24 mov eax, LENGTH bar // expected-error {{unable to lookup expression}} local
28 mov eax, SIZE bar // expected-error {{unable to lookup expression}} local
32 mov eax, TYPE bar // expected-error {{unable to lookup expression}} expected-error {{use of undeclared label 'bar'}} local
56 mov eax, arr; local
57 mov eax, arr[0]; local
58 mov eax, arr[1 + 2] local
59 mov eax, arr[1 + (2 * 5) - 3 + 1<<1]; local
63 __asm { mov eax, arr[ebp + 1 + (2 * 5) - 3 + 1<<1] } local
65 __asm { mov eax, arr[esi * 4] } local
67 __asm { mov eax, arr[i] } local
69 __asm { mov eax, global[i] } local
83 __asm { mov eax, [eax] UndeclaredId } \/\/ expected-error {{unknown token in expression}} expected-error {{use of undeclared label 'UndeclaredId'}} local
89 __asm { mov eax, [eax] A } local
95 __asm { mov eax, [0] A.a } local
96 __asm { mov eax, [0].A.a } local
97 __asm { mov eax, [0].a } \/\/ expected-error {{Unable to lookup field reference!}} local
98 __asm { mov eax, fs:[0] A.a } local
99 __asm { mov eax, fs:[0].A.a } local
100 __asm { mov eax, fs:[0].a } \/\/ expected-error {{Unable to lookup field reference!}} local
101 __asm { mov eax, fs:[0]. A.a } \/\/ expected-error {{Unexpected token type!}} local
109 asm { movl eax, x } \/\/ expected-error {{parameter references not allowed in naked functions}} expected-error {{use of undeclared label 'x'}} local
115 asm { mov eax, y } \/\/ No error. local
122 mov eax, 0 local
129 __asm mov eax, 0 local
137 mov eax, 0 local
144 __asm mov eax, 0 local
149 __asm mov eax, foo \/\/ expected-error {{use of undeclared label 'foo'}} expected-warning {{unused label 'foo'}} local
    [all...]
  /external/freetype/include/internal/
ftcalc.h 127 "addl %%ecx, %%eax\n"
129 "shrl $16, %%eax\n"
131 "addl %%edx, %%eax\n"
159 mov eax, a local
165 add eax, ecx local
167 shr eax, 16 local
169 add eax, edx local
170 mov result, eax
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
ftcalc.h 127 "addl %%ecx, %%eax\n"
129 "shrl $16, %%eax\n"
131 "addl %%edx, %%eax\n"
159 mov eax, a local
165 add eax, ecx local
167 shr eax, 16 local
169 add eax, edx local
170 mov result, eax
  /external/libvpx/libvpx/third_party/libyuv/source/
compare_win.cc 26 mov eax, [esp + 4] // src_a local
33 movdqu xmm1, [eax]
34 lea eax, [eax + 16] local
55 movd eax, xmm0 local
67 mov eax, [esp + 4] // src_a local
72 sub edx, eax
75 vmovdqu ymm1, [eax]
76 vmovdqu ymm2, [eax + edx]
77 lea eax, [eax + 32 local
96 vmovd eax, xmm0 local
141 mov eax, [esp + 4] \/\/ src local
150 lea eax, [eax + 16] local
182 movd eax, xmm0 \/\/ return hash local
192 mov eax, [esp + 4] \/\/ src local
206 lea eax, [eax + 16] local
219 movd eax, xmm0 \/\/ return hash local
    [all...]
rotate_win.cc 30 mov eax, [esp + 12 + 4] // src local
40 movq xmm0, qword ptr [eax]
41 lea ebp, [eax + 8]
42 movq xmm1, qword ptr [eax + edi]
43 lea eax, [eax + 2 * edi] local
45 movq xmm2, qword ptr [eax]
48 movq xmm3, qword ptr [eax + edi]
49 lea eax, [eax + 2 * edi local
56 lea eax, [eax + 2 * edi] local
62 mov eax, ebp local
124 mov eax, [esp + 16 + 4] \/\/ src local
142 lea eax, [eax + 2 * edi] local
149 lea eax, [eax + 2 * edi] local
156 lea eax, [eax + 2 * edi] local
163 lea eax, [eax + 2 * edi] local
170 lea eax, [eax + 8 * edi + 16] local
    [all...]

Completed in 1234 milliseconds

12 3 4 5 6 7 8 91011>>