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

12 3 4 5 6 7 8

  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
ptrace.h 34 long eax; member in struct:pt_regs
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
ptrace.h 34 long eax; member in struct:pt_regs
  /external/jmonkeyengine/engine/src/test/jme3test/audio/
TestAmbient.java 51 float[] eax = new float[]{15, 38.0f, 0.300f, -1000, -3300, 0, local
55 Environment env = new Environment(eax);
TestReverb.java 52 float[] eax = new float[]{15, 38.0f, 0.300f, -1000, -3300, 0, local
56 audioRenderer.setEnvironment(new Environment(eax));
  /external/oprofile/libop/
op_hw_specific.h 22 unsigned eax; local
31 : "=a" (eax)
36 asm("cpuid" : "=a" (eax), "=b" (v.b), "=c" (v.c), "=d" (v.d) : "0" (0));
54 asm("cpuid" : "=a" (v.eax) : "a" (code) : "ecx","ebx","edx");
64 static inline unsigned int cpu_model(unsigned int eax)
66 unsigned model = (eax & 0xf0) >> 4;
67 unsigned ext_model = (eax & 0xf0000) >> 12;
71 static inline unsigned int cpu_family(unsigned int eax)
73 unsigned family = (eax & 0xf00) >> 8;
74 unsigned ext_family = (eax & 0xff00000) >> 20
89 unsigned eax; local
103 unsigned ebx, eax; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cpuinfo/
SDL_cpuinfo.c 62 " popl %%eax \n"
63 " movl %%eax,%%ecx \n"
64 " xorl $0x200000,%%eax # Flip ID bit in EFLAGS \n"
65 " pushl %%eax # Save new EFLAGS value on stack \n"
68 " popl %%eax # Store new EFLAGS in EAX \n"
69 " xorl %%ecx,%%eax # Can not toggle ID bit, \n"
75 : "%eax", "%ecx"
84 " xorl $0x200000,%%eax # Flip ID bit in EFLAGS \n"
88 " popq %%rax # Store new EFLAGS in EAX \n
102 xor eax, 200000h ; Flip ID bit in EFLAGS local
103 push eax ; Save new EFLAGS value on stack local
106 pop eax ; Store new EFLAGS in EAX local
107 xor eax, ecx ; Can not toggle ID bit, local
189 xor eax, eax ; Set up for CPUID instruction local
193 cmp eax, 1 ; Make sure 1 is valid input for CPUID local
195 xor eax, eax local
    [all...]
  /external/skia/legacy/src/opts/
opts_check_SSE2.cpp 24 mov eax, [info_type] local
27 mov [edi], eax
  /external/stlport/src/
lock_free_slist.h 66 int __tmp1; // These dummy variables are used to tell GCC that the eax, ecx,
72 "L1_%=: movl %%eax, (%%ebx)\n\t" // __item._M_next = _M._M_data._M_top
75 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
93 "L1_%=: testl %%eax, %%eax\n\t" // _M_top == NULL?
95 " movl (%%eax), %%ebx\n\t" // new top = _M._M_data._M_top->_M_next
98 " jne L1_%=\n\t" // We failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
118 "L1_%=: testl %%eax, %%eax\n\t" // _M_top == NULL?
123 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top
215 mov eax, [esi] \/\/ _M._M_data._M_top local
238 mov eax, [esi] \/\/ _M._M_data._M_top local
240 L1: test eax, eax \/\/ _M_top == NULL? local
265 mov eax, [esi] \/\/ _M._M_data._M_top local
267 L1: test eax, eax \/\/ _M_top == NULL? local
    [all...]
  /external/valgrind/main/none/tests/x86/
bug152818-x86.c 49 "movl %3, %%eax \t\n" \
51 "movl %4, %%eax \t\n" \
59 "movl %%eax, %0 \t\n" \
61 "movl %%eax, %1 \t\n" \
73 : "%eax", "%esi", "%ecx", "cc" /* we mess up EFLAGS */);
94 unsigned int eax = 0x12348765; local
125 printf ("REP %s (EAX = %08X, EFLAGS = %s) => ", i_name, eax, sz_eflags);
140 eax, esi, eflags, resulting_eax, resulting_esi, resulting_eflags,
147 eax, esi, eflags, resulting_eax, resulting_esi, resulting_eflags
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
TCSpinLock.h 85 mov eax, this ; store &lockword_ (which is this+0) in eax local
87 xchg [eax], ebx ; exchange lockword_ and 1
117 mov eax, this ; store &lockword_ (which is this+0) in eax
118 mov [eax], 0 ; set lockword_ to 0
167 mov eax, lockword ; assign lockword into eax local
169 xchg [eax], ebx ; exchange *lockword and 1
  /ndk/sources/cxx-stl/stlport/src/
lock_free_slist.h 66 int __tmp1; // These dummy variables are used to tell GCC that the eax, ecx,
72 "L1_%=: movl %%eax, (%%ebx)\n\t" // __item._M_next = _M._M_data._M_top
75 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
93 "L1_%=: testl %%eax, %%eax\n\t" // _M_top == NULL?
95 " movl (%%eax), %%ebx\n\t" // new top = _M._M_data._M_top->_M_next
98 " jne L1_%=\n\t" // We failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
118 "L1_%=: testl %%eax, %%eax\n\t" // _M_top == NULL?
123 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top
215 mov eax, [esi] \/\/ _M._M_data._M_top local
238 mov eax, [esi] \/\/ _M._M_data._M_top local
240 L1: test eax, eax \/\/ _M_top == NULL? local
265 mov eax, [esi] \/\/ _M._M_data._M_top local
267 L1: test eax, eax \/\/ _M_top == NULL? local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
msr.h 74 static __inline__ void cpuid(int op, unsigned int *eax, unsigned int *ebx,
78 : "=a" (*eax),
86 static __inline__ void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx,
90 : "=a" (*eax),
102 unsigned int eax; local
105 : "=a" (eax)
108 return eax;
112 unsigned int eax, ebx; local
115 : "=a" (eax), "=b" (ebx)
122 unsigned int eax, ecx local
132 unsigned int eax, edx; local
    [all...]
ptrace.h 19 long eax; member in struct:pt_regs
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
msr.h 74 static __inline__ void cpuid(int op, unsigned int *eax, unsigned int *ebx,
78 : "=a" (*eax),
86 static __inline__ void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx,
90 : "=a" (*eax),
102 unsigned int eax; local
105 : "=a" (eax)
108 return eax;
112 unsigned int eax, ebx; local
115 : "=a" (eax), "=b" (ebx)
122 unsigned int eax, ecx local
132 unsigned int eax, edx; local
    [all...]
ptrace.h 19 long eax; member in struct:pt_regs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
msr.h 74 static __inline__ void cpuid(int op, unsigned int *eax, unsigned int *ebx,
78 : "=a" (*eax),
86 static __inline__ void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx,
90 : "=a" (*eax),
102 unsigned int eax; local
105 : "=a" (eax)
108 return eax;
112 unsigned int eax, ebx; local
115 : "=a" (eax), "=b" (ebx)
122 unsigned int eax, ecx local
132 unsigned int eax, edx; local
    [all...]
ptrace.h 19 long eax; member in struct:pt_regs
  /external/freetype/include/freetype/config/
ftconfig.h 381 "addl %%ecx, %%eax\n"
383 "shrl $16, %%eax\n"
385 "addl %%edx, %%eax\n"
413 mov eax, a local
419 add eax, ecx local
421 shr eax, 16 local
423 add eax, edx local
424 mov result, eax
  /external/kernel-headers/original/asm-x86/
msr.h 229 static inline void cpuid(int op, unsigned int *eax, unsigned int *ebx,
233 : "=a" (*eax),
241 static inline void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx,
245 : "=a" (*eax),
257 unsigned int eax; local
260 : "=a" (eax)
263 return eax;
267 unsigned int eax, ebx; local
270 : "=a" (eax), "=b" (ebx)
277 unsigned int eax, ecx local
287 unsigned int eax, edx; local
    [all...]
  /external/libyuv/files/source/
format_conversion.cc 33 mov eax, [esp + 4] // src_argb local
41 movdqa xmm0, [eax]
42 lea eax, [eax + 16] local
  /external/oprofile/module/
compat22.h 143 unsigned int eax, edx; local
146 : "=a" (eax), "=d" (edx)
  /external/qemu/distrib/sdl-1.2.15/src/timer/os2/
SDL_systimer.c 67 push eax
68 mov eax, dword ptr hires_now local
70 sub eax, dword ptr hires_start_ticks local
75 push eax
77 mov eax,ecx local
79 pop eax
80 add edx,eax
81 pop eax
84 mov dword ptr ticks, eax
86 pop eax
    [all...]
  /external/zlib/src/contrib/inflate86/
inffas86.c 164 " lodsl\n" /* eax = *(uint *)in++ */
183 " lodsl\n" /* eax = *(uint *)in++ */
191 " movl (%%rbp,%%r8,4), %%eax\n" /* eax = lcode[hold & lmask] */
201 " shrl $16, %%eax\n" /* output this.val char */
206 " movl (%%rbp,%%r8,4), %%eax\n" /* eax = lcode[hold & lmask] */
216 " shrl $16, %%eax\n" /* output this.val char */
222 " movl %%eax, %%r14d\n" /* len = this */
233 " xorl %%eax, %%eax\n
799 lea eax, ar local
823 xor eax, eax local
827 shl eax, cl local
831 mov eax, [esp+56] \/* eax = lmask *\/ local
832 and eax, edx \/* eax &= hold *\/ local
833 mov eax, [ebp+eax*4] \/* eax = lcode[hold & lmask] *\/ local
843 shr eax, 16 \/* output this.val char *\/ local
862 xor eax, eax local
866 shl eax, cl local
872 xor eax, eax local
874 shl eax, cl local
876 and eax, edx \/* eax &= hold *\/ local
884 xor eax, eax local
888 shl eax, cl local
892 mov eax, [esp+60] \/* eax = dmask *\/ local
894 and eax, edx \/* eax &= hold *\/ local
895 mov eax, [ecx+eax*4]\/* eax = dcode[hold & dmask] *\/ local
913 xor eax, eax local
917 shl eax, cl local
923 xor eax, eax local
925 shl eax, cl local
927 and eax, edx \/* eax &= hold *\/ local
933 mov eax, edi local
934 sub eax, [esp+20] \/* nbytes = out - beg *\/ local
936 cmp eax, ebp local
987 xor eax, eax local
989 shl eax, cl local
991 and eax, edx \/* eax &= hold *\/ local
992 add eax, [esp+64] \/* eax += len *\/ local
993 mov eax, [ebp+eax*4] \/* eax = lcode[val+(hold&mask[op])]*\/ local
1001 xor eax, eax local
1003 shl eax, cl local
1005 and eax, edx \/* eax &= hold *\/ local
1006 add eax, ebp \/* eax += dist *\/ local
1008 mov eax, [ecx+eax*4] \/* eax = dcode[val+(hold&mask[op])]*\/ local
1014 mov eax, [esp+48] \/* eax = wsize *\/ local
1018 cmp eax, ebp local
1025 sub eax, ecx local
1028 mov eax, [esp+64] \/* eax = len *\/ local
1029 cmp eax, ecx local
1032 sub eax, ecx \/* len -= nbytes *\/ local
1040 mov eax, [esp+52] \/* eax = write *\/ local
1049 mov eax, [esp+64] \/* eax = len *\/ local
1050 cmp eax, ecx local
1053 sub eax, ecx \/* len -= nbytes *\/ local
1057 cmp eax, ecx local
1060 sub eax, ecx \/* len -= nbytes *\/ local
1071 mov eax, [esp+64] \/* eax = len *\/ local
1072 cmp eax, ecx local
1075 sub eax, ecx \/* len -= nbytes *\/ local
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
ptrace.h 29 long eax; member in struct:pt_regs
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
ptrace.h 29 long eax; member in struct:pt_regs

Completed in 1764 milliseconds

12 3 4 5 6 7 8