HomeSort by relevance Sort by last modified time
    Searched defs:ebx (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium/base/
atomicops_internals_x86_gcc.cc 19 // Inline cpuid instruction. In PIC compilations, %ebx contains the address
24 asm ("mov %%ebx, %%edi\n" \
26 "xchg %%edi, %%ebx\n" \
49 uint32 ebx; local
54 cpuid(eax, ebx, ecx, edx, 0);
56 memcpy(vendor, &ebx, 4);
62 cpuid(eax, ebx, ecx, edx, 1);
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_mixer_MMX_VC.c 47 push ebx
52 mov ebx, nSize // ebx = size local
53 shr ebx, 4 // process 16 bytes per iteration = 8 samples local
104 dec ebx //%%ebx\n"
110 pop ebx
128 push ebx
143 mov ebx, nSize //%2,%%ebx // ebx = siz local
144 shr ebx, 3 \/\/$3,%%ebx \/\/ process 8 bytes per iteration = 8 samples local
145 cmp ebx, 0 \/\/$0,%%ebx local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_stdlib.c 101 push ebx
105 mov ebx,eax local
109 mul ebx
115 imul ebx,edx local
117 lea ebx,[ebx+ecx] local
118 mov dword ptr [ebp-14h],ebx
121 pop ebx
133 push ebx
163 mov ebx,ea local
169 mov ebx,eax local
174 shr ebx,1 local
178 or ebx,ebx local
223 mov ebx,eax local
230 mov ebx,dword ptr [esp+14h] local
235 rcr ebx,1 local
305 mov ebx,eax local
310 shr ebx,1 local
314 or ebx,ebx local
364 mov ebx,dword ptr [esp+10h] local
369 rcr ebx,1 local
437 mov ebx,eax local
449 mov ebx,eax local
454 shr ebx,1 local
458 or ebx,ebx local
478 xor ebx,ebx local
490 mov ebx,ecx local
516 mov ebx,eax local
529 mov ebx,dword ptr [esp+10h] local
534 rcr ebx,1 local
557 xor ebx,ebx local
566 mov ebx,ecx local
    [all...]
  /external/oprofile/libop/
op_hw_specific.h 23 asm volatile( "pushl %%ebx; cpuid; movl %%ebx, %1; popl %%ebx"
31 static inline void workaround_nehalem_aaj79(unsigned *ebx)
50 asm volatile( "pushl %%ebx; cpuid; movl %%ebx, %1; popl %%ebx"
55 *ebx |= (1 << 2); /* disable unsupported event */
61 unsigned ebx, eax; local
62 asm volatile( "pushl %%ebx; cpuid; movl %%ebx, %1; popl %%ebx
    [all...]
  /external/stlport/src/
lock_free_slist.h 56 // NOTE: GCC uses ebx as the PIC register for globals in shared libraries.
61 // requires ebx, I work around this here by using ecx for the '__item'
62 // input and spilling ebx into edi. This also precludes us from using
64 // it relative to ebx). Instead, we're using esi for the address of _M_data.
70 (" movl %%ebx, %%edi\n\t"
71 " movl %%ecx, %%ebx\n\t"
72 "L1_%=: movl %%eax, (%%ebx)\n\t" // __item._M_next = _M._M_data._M_top
76 " movl %%edi, %%ebx"
92 (" movl %%ebx, %%edi\n\t"
95 " movl (%%eax), %%ebx\n\t" // new top = _M._M_data._M_top->_M_nex
214 mov ebx, __item local
242 mov ebx, [eax] \/\/ new top = _M._M_data._M_top->_M_next local
269 xor ebx,ebx \/\/ We're attempting to set _M._M_data._M_top to NULL local
    [all...]
  /external/v8/test/cctest/
test-disasm-ia32.cc 75 __ mov(ebx, Operand(esp, ecx, times_2, 0)); // [esp+ecx*4]
78 __ add(edx, Operand(ebx));
80 __ add(edx, Operand(ebx, 0));
81 __ add(edx, Operand(ebx, 16));
82 __ add(edx, Operand(ebx, 1999));
92 __ add(Operand(ebx), Immediate(12));
103 __ cmp(ebx, foo2);
104 __ cmpb(ebx, Operand(ebp, ecx, times_2, 0));
105 __ cmpb(Operand(ebp, ecx, times_2, 0), ebx); local
129 __ bts(Operand(ebx, ecx, times_4, 0), ecx)
    [all...]
  /external/webkit/JavaScriptCore/wtf/
TCSpinLock.h 85 mov ebx, 1 ; store 1 in ebx local
86 xchg [eax], ebx ; exchange lockword_ and 1 local
87 mov r, ebx ; store old value of lockword_ in r local
162 mov ebx, 1 ; assign 1 into ebx local
163 xchg [eax], ebx ; exchange *lockword and 1 local
164 mov r, ebx ; store old value of *lockword in r local
  /ndk/sources/android/stlport/src/
lock_free_slist.h 56 // NOTE: GCC uses ebx as the PIC register for globals in shared libraries.
61 // requires ebx, I work around this here by using ecx for the '__item'
62 // input and spilling ebx into edi. This also precludes us from using
64 // it relative to ebx). Instead, we're using esi for the address of _M_data.
70 (" movl %%ebx, %%edi\n\t"
71 " movl %%ecx, %%ebx\n\t"
72 "L1_%=: movl %%eax, (%%ebx)\n\t" // __item._M_next = _M._M_data._M_top
76 " movl %%edi, %%ebx"
92 (" movl %%ebx, %%edi\n\t"
95 " movl (%%eax), %%ebx\n\t" // new top = _M._M_data._M_top->_M_nex
214 mov ebx, __item local
242 mov ebx, [eax] \/\/ new top = _M._M_data._M_top->_M_next local
269 xor ebx,ebx \/\/ We're attempting to set _M._M_data._M_top to NULL local
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
ptrace.h 23 long ebx; member in struct:pt_regs
user32.h 43 __u32 ebx, ecx, edx, esi, edi, ebp, eax; member in struct:user_regs_struct32
user_32.h 45 long ebx, ecx, edx, esi, edi, ebp, eax; member in struct:user_regs_struct
  /development/ndk/platforms/android-5/arch-x86/include/asm/
ptrace.h 23 long ebx; member in struct:pt_regs
user32.h 43 __u32 ebx, ecx, edx, esi, edi, ebp, eax; member in struct:user_regs_struct32
user_32.h 45 long ebx, ecx, edx, esi, edi, ebp, eax; member in struct:user_regs_struct
  /external/kernel-headers/original/asm-x86/
msr.h 229 static inline void cpuid(int op, unsigned int *eax, unsigned int *ebx,
234 "=b" (*ebx),
241 static inline void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx,
246 "=b" (*ebx),
267 unsigned int eax, ebx; local
270 : "=a" (eax), "=b" (ebx)
273 return ebx;
user32.h 35 __u32 ebx, ecx, edx, esi, edi, ebp, eax; member in struct:user_regs_struct32
user_32.h 78 long ebx, ecx, edx, esi, edi, ebp, eax; member in struct:user_regs_struct
  /external/qemu/distrib/sdl-1.2.12/src/timer/os2/
SDL_systimer.c 72 mov ebx,1000 local
74 mul ebx
78 mul ebx
82 mov ebx, dword ptr hires_ticks_per_second local
83 div ebx
  /external/zlib/contrib/inflate86/
inffas86.c 90 /* 88 44 */ unsigned bits; /* ebx rbx local strm->bits */
147 " movl 88(%%rsp), %%ebx\n" /* ebx = bits */
460 " movl %%ebx, 88(%%rsp)\n" /* bits */
479 " movl 44(%%esp), %%ebx\n" /* ebx = bits */
789 " movl %%ebx, 44(%%esp)\n" /* save bits */
795 : "memory", "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi"
806 mov ebx, [esp+44] /* ebx = bits * local
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
ptrace.h 23 long ebx; member in struct:pt_regs
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
ptrace.h 23 long ebx; member in struct:pt_regs
  /external/libvpx/vp8/common/x86/
postproc_mmx.c 69 push ebx
70 lea ebx, Blur local
94 movq mm6, [ebx + 32 ] ;
105 movq mm6, [ebx + 48] ;
128 movq mm6, [ebx + 64 ] ;
155 movq mm6, [ebx ] ;
180 movq mm6, [ebx + 16] ;
244 movq mm6, [ebx + 32 ] ;
256 movq mm6, [ebx + 48]
280 movq mm6, [ebx + 64
    [all...]
  /external/libvpx/vpx_scale/intel_linux/
scaleopt.c 77 push ebx
94 mov ebx, eax local
96 and ebx, 0xffff00 // ebx = xx 01 02 xx local
102 shr ebx, 8 // ebx = 01 02 xx xx local
103 or eax, ebx // eax = 01 02 02 03
105 shl ebx, 16 // ebx = xx xx 01 02 local
108 or ebx, ecx // ebx = 00 01 01 0 local
134 mov ebx, eax local
136 and ebx, 0xffff00 \/\/ ebx = xx 01 02 xx local
142 shr ebx, 8 \/\/ ebx = 01 02 xx xx local
150 shl ebx, 16 \/\/ ebx = xx xx 01 02 local
153 or ebx, ecx \/\/ ebx = 00 01 01 02 local
1455 mov ebx, dest_width local
1515 sub ebx, 4 local
1644 mov ebx, dest_width; local
1691 sub ebx, 4 local
    [all...]
  /external/libvpx/vpx_scale/win32/
scaleopt.c 75 push ebx
92 mov ebx, eax local
94 and ebx, 0xffff00 // ebx = xx 01 02 xx local
100 shr ebx, 8 // ebx = 01 02 xx xx local
101 or eax, ebx // eax = 01 02 02 03
103 shl ebx, 16 // ebx = xx xx 01 02 local
106 or ebx, ecx // ebx = 00 01 01 0 local
132 mov ebx, eax local
134 and ebx, 0xffff00 \/\/ ebx = xx 01 02 xx local
140 shr ebx, 8 \/\/ ebx = 01 02 xx xx local
148 shl ebx, 16 \/\/ ebx = xx xx 01 02 local
151 or ebx, ecx \/\/ ebx = 00 01 01 02 local
1344 mov ebx, dest_width local
1404 sub ebx, 4 local
1534 mov ebx, dest_width; local
1581 sub ebx, 4 local
    [all...]
  /external/quake/quake/src/WinQuake/
dosisms.h 37 unsigned long ebx; member in struct:__anon6988::__anon6989

Completed in 1533 milliseconds

1 2 3