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

1 2 3 4 5

  /external/kernel-headers/original/asm-x86/
tsc.h 39 unsigned eax, edx; local
46 ASM_OUTPUT2("=a" (eax), "=d" (edx)),
48 ret = (((unsigned long long)edx) << 32) | ((unsigned long long)eax);
57 "=a" (eax), "0" (1) : "ebx","ecx","edx","memory");
msr.h 202 __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
230 unsigned int *ecx, unsigned int *edx)
236 "=d" (*edx)
242 int *edx)
248 "=d" (*edx)
287 unsigned int eax, edx; local
290 : "=a" (eax), "=d" (edx)
293 return edx;
  /external/valgrind/main/none/tests/x86/
cmpxchg8b.c 12 UInt edx; variable
21 "\tpushl %edx\n"
28 "\tmovl " VG_SYM(edx) ",%edx\n"
33 "\tmovl %edx," VG_SYM(edx) "\n"
38 "\tpopl %edx\n"
47 edx = 0x11111111; eax = 0x22222222;
53 eax, ebx, ecx, edx, zout & 0xFFFF, m64 );
55 edx = 0x11111111; eax = 0x22222222
    [all...]
  /external/chromium/base/
atomicops_internals_x86_gcc.cc 51 uint32 edx; local
54 cpuid(eax, ebx, ecx, edx, 0);
57 memcpy(vendor + 4, &edx, 4);
61 // get feature flags in ecx/edx, and family/model in eax
62 cpuid(eax, ebx, ecx, edx, 1);
84 // edx bit 26 is SSE2 which we use to tell use whether we can use mfence
85 AtomicOps_Internalx86CPUFeatures.has_sse2 = ((edx >> 26) & 1);
  /external/oprofile/module/x86/
cpu_type.c 36 int eax, ebx, ecx, edx; local
38 cpuid (1, &eax, &ebx, &ecx, &edx);
55 int eax, ebx, ecx, edx; local
58 cpuid(1, &eax, &ebx, &ecx, &edx);
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_stdlib.c 53 mov edx,dword ptr [esp+18h] local
59 test edx,edx local
66 mov edx,dword ptr [esp+14h] local
67 adc edx,0 local
74 mov edx,dword ptr [esp+14h] local
75 sbb edx,0 local
78 mov edx,dword ptr [esp+14h] local
79 test edx,7FFFFFFFh local
111 mov ecx,edx
113 mov edx,dword ptr [ebp+0Ch] local
119 mov edx,dword ptr [ebp-14h] local
139 mov edx,dword ptr [esp+10h] local
150 mov edx,dword ptr [esp+18h] local
161 xor edx,edx local
166 mov edx,ebx local
171 mov edx,dword ptr [esp+14h] local
176 shr edx,1 local
186 add edx,ecx local
188 cmp edx,dword ptr [esp+14h] local
196 xor edx,edx local
203 sbb edx,0 local
221 xor edx,edx local
226 mov edx,ebx local
231 mov edx,dword ptr [esp+10h] local
236 shr edx,1 local
246 add edx,ecx local
248 cmp edx,dword ptr [esp+10h] local
256 xor edx,edx local
274 mov edx,dword ptr [esp+0Ch] local
284 mov edx,dword ptr [esp+14h] local
295 xor edx,edx local
300 xor edx,edx local
307 mov edx,dword ptr [esp+10h] local
312 shr edx,1 local
321 add edx,ecx local
323 cmp edx,dword ptr [esp+10h] local
330 sbb edx,dword ptr [esp+18h] local
333 sbb edx,dword ptr [esp+10h] local
339 sbb edx,0 local
355 xor edx,edx local
360 xor edx,edx local
365 mov edx,dword ptr [esp+0Ch] local
370 shr edx,1 local
379 add edx,ecx local
381 cmp edx,dword ptr [esp+0Ch] local
388 sbb edx,dword ptr [esp+14h] local
391 sbb edx,dword ptr [esp+0Ch] local
394 sbb edx,0 local
413 mov edx,dword ptr [esp+10h] local
424 mov edx,dword ptr [esp+18h] local
435 xor edx,edx local
446 add edx,ecx local
451 mov edx,dword ptr [esp+14h] local
456 shr edx,1 local
466 add edx,ecx local
468 cmp edx,dword ptr [esp+14h] local
476 sbb edx,dword ptr [esp+1Ch] local
481 sbb edx,dword ptr [esp+14h] local
486 sbb edx,0 local
489 mov edx,ebx local
497 sbb edx,0 local
514 xor edx,edx local
525 add edx,ecx local
530 mov edx,dword ptr [esp+0Ch] local
535 shr edx,1 local
545 add edx,ecx local
547 cmp edx,dword ptr [esp+0Ch] local
555 sbb edx,dword ptr [esp+14h] local
560 sbb edx,dword ptr [esp+0Ch] local
563 sbb edx,0 local
565 mov edx,ebx local
580 shld edx,eax,cl local
584 mov edx,eax local
587 shl edx,cl local
591 xor edx,edx local
602 shrd eax,edx,cl local
603 shr edx,cl local
607 xor edx,edx local
613 xor edx,edx local
    [all...]
  /external/v8/src/
atomicops_internals_x86_gcc.cc 73 uint32_t edx; local
76 cpuid(eax, ebx, ecx, edx, 0);
79 memcpy(vendor + 4, &edx, 4);
83 // get feature flags in ecx/edx, and family/model in eax
84 cpuid(eax, ebx, ecx, edx, 1);
106 // edx bit 26 is SSE2 which we use to tell use whether we can use mfence
107 AtomicOps_Internalx86CPUFeatures.has_sse2 = ((edx >> 26) & 1);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
toshiba.h 31 unsigned int edx __attribute__ ((packed)); member in struct:__anon21250
  /system/core/debuggerd/x86/
x86_utility.h 24 long edx; member in struct:pt_regs_x86
  /external/stlport/src/
lock_free_slist.h 67 int __tmp2; // and edx registers will not have the same value as their input.
73 " leal 1(%%edx),%%ecx\n\t" // new sequence = _M._M_data._M_sequence + 1
75 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
96 " leal 1(%%edx),%%ecx\n\t" // new sequence = _M._M_data._M_sequence + 1
98 " jne L1_%=\n\t" // We failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
121 " leal 1(%%edx),%%ecx\n\t" // new sequence = _M._M_data._M_sequence + 1
123 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
216 mov edx, [esi+4] // _M._M_data._M_sequence local
218 lea ecx, [edx+1] // new sequence = _M._M_data._M_sequence + 1
220 jne L1 // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top
239 mov edx, [esi+4] \/\/ _M._M_data._M_sequence local
266 mov edx, [esi+4] \/\/ _M._M_data._M_sequence local
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 108 __ mov(edx, dst);
109 __ and_(edx, 0xF);
110 __ neg(edx);
111 __ add(Operand(edx), Immediate(16));
112 __ add(dst, Operand(edx));
113 __ add(src, Operand(edx));
114 __ sub(Operand(count), edx); local
122 __ mov(edx, count);
124 Register count = edx;
168 __ mov(edx, ecx)
234 __ sub(Operand(count), edx); local
    [all...]
  /external/v8/test/cctest/
test-disasm-ia32.cc 78 __ add(edx, Operand(ebx));
79 __ add(edx, Operand(12, RelocInfo::NONE));
80 __ add(edx, Operand(ebx, 0));
81 __ add(edx, Operand(ebx, 16));
82 __ add(edx, Operand(ebx, 1999));
83 __ add(edx, Operand(esp, 0));
84 __ add(edx, Operand(esp, 16));
85 __ add(edx, Operand(esp, 1999));
97 __ and_(edx, 3);
98 __ and_(edx, Operand(esp, 4))
153 __ mov_b(Operand(esp, 16), edx); local
155 __ mov_w(Operand(esp, 16), edx); local
165 __ mov(Operand(ebx, ecx, times_4, 10000), edx); local
258 __ bts(Operand(ebx, ecx, times_8, 10000), edx); local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
lock_free_slist.h 67 int __tmp2; // and edx registers will not have the same value as their input.
73 " leal 1(%%edx),%%ecx\n\t" // new sequence = _M._M_data._M_sequence + 1
75 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
96 " leal 1(%%edx),%%ecx\n\t" // new sequence = _M._M_data._M_sequence + 1
98 " jne L1_%=\n\t" // We failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
121 " leal 1(%%edx),%%ecx\n\t" // new sequence = _M._M_data._M_sequence + 1
123 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
216 mov edx, [esi+4] // _M._M_data._M_sequence local
218 lea ecx, [edx+1] // new sequence = _M._M_data._M_sequence + 1
220 jne L1 // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top
239 mov edx, [esi+4] \/\/ _M._M_data._M_sequence local
266 mov edx, [esi+4] \/\/ _M._M_data._M_sequence local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
msr.h 47 __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
75 unsigned int *ecx, unsigned int *edx)
81 "=d" (*edx)
87 int *edx)
93 "=d" (*edx)
132 unsigned int eax, edx; local
135 : "=a" (eax), "=d" (edx)
138 return edx;
ptrace.h 15 long edx; member in struct:pt_regs
  /bionic/libc/kernel/arch-x86/asm/
ptrace.h 25 long edx; member in struct:pt_regs
  /development/ndk/platforms/android-9/arch-x86/include/asm/
ptrace.h 25 long edx; member in struct:pt_regs
  /external/freetype/include/freetype/config/
ftconfig.h 384 "imul %%edx\n"
385 "movl %%edx, %%ecx\n"
389 "adcl $0, %%edx\n"
391 "shll $16, %%edx\n"
392 "addl %%edx, %%eax\n"
421 mov edx, b local
422 imul edx
423 mov ecx, edx
427 adc edx, 0 local
429 shl edx, 1 local
    [all...]
  /external/libyuv/files/source/
format_conversion.cc 32 mov edx, [esp + 8] // dst_bayer local
41 movd [edx], xmm0
42 lea edx, [edx + 4] local
row_win.cc 82 mov edx, [esp + 8] /* dst_y */ local
103 movdqa [edx], xmm0
104 lea edx, [edx + 16] local
115 mov edx, [esp + 8] /* dst_y */ local
136 movdqa [edx], xmm0
137 lea edx, [edx + 16] local
148 mov edx, [esp + 8] /* dst_y */ local
169 movdqa [edx], xmm
170 lea edx, [edx + 16] local
185 mov edx, [esp + 8 + 12] \/\/ dst_u local
232 lea edx, [edx + 8] local
249 mov edx, [esp + 8 + 12] \/\/ dst_u local
296 lea edx, [edx + 8] local
313 mov edx, [esp + 8 + 12] \/\/ dst_u local
360 lea edx, [edx + 8] local
373 mov edx, [esp + 8] \/\/ dst_argb local
400 lea edx, [edx + 64] local
412 mov edx, [esp + 8] \/\/ dst_argb local
439 lea edx, [edx + 64] local
454 mov edx, [esp + 32 + 4] local
470 lea edx, [edx + 2] local
495 mov edx, [esp + 32 + 4] local
511 lea edx, [edx + 2] local
536 mov edx, [esp + 32 + 4] local
552 lea edx, [edx + 2] local
577 mov edx, [esp + 32 + 4] \/\/ Y local
591 lea edx, [edx + 1] local
612 mov edx, [esp + 4 + 8] \/\/ rgb local
625 lea edx, [edx + 8] local
    [all...]
  /external/oprofile/module/
compat22.h 143 unsigned int eax, edx; local
146 : "=a" (eax), "=d" (edx)
149 return edx;
  /external/qemu/distrib/sdl-1.2.12/src/timer/os2/
SDL_systimer.c 66 push edx
69 mov edx, dword ptr hires_now+4 local
71 sbb edx, dword ptr hires_start_ticks+4 local
73 mov ecx,edx
76 push edx
80 add edx,eax local
85 pop edx
  /external/zlib/contrib/inflate86/
inffas86.c 89 /* 80 40 */ unsigned long hold; /* edx rdx local strm->hold */
237 " andl %%edx, %%eax\n" /* eax &= hold */
275 " andl %%edx, %%eax\n" /* eax &= hold */
336 " andl %%edx, %%eax\n" /* eax &= hold */
350 " andl %%edx, %%eax\n" /* eax &= hold */
478 " movl 40(%%esp), %%edx\n" /* edx = hold */
501 " orl %%eax, %%edx\n" /* hold |= *((ushort *)in)++ << bits */
505 " andl %%edx, %%eax\n" /* eax &= hold */
511 " shrl %%cl, %%edx\n" /* hold >>= this.bits *
805 mov edx, [esp+40] \/* edx = hold *\/ local
828 or edx, eax \/* hold |= *((ushort *)in)++ << bits *\/ local
838 shr edx, cl \/* hold >>= this.bits *\/ local
867 or edx, eax \/* hold |= *((ushort *)in)++ << bits *\/ local
877 shr edx, cl local
889 or edx, eax \/* hold |= *((ushort *)in)++ << bits *\/ local
902 shr edx, cl \/* hold >>= this.bits *\/ local
918 or edx, eax \/* hold |= *((ushort *)in)++ << bits *\/ local
928 shr edx, cl local
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
ptrace.h 25 long edx; member in struct:pt_regs
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
ptrace.h 25 long edx; member in struct:pt_regs

Completed in 369 milliseconds

1 2 3 4 5