Searched refs:imul (Results 1 - 25 of 59) sorted by relevance

123

/external/llvm/test/MC/ELF/
H A Drelax-arith.s7 // CHECK: Name: imul
14 .section imul
15 imul $foo, %bx, %bx
16 imul $foo, bar, %bx
17 imul $foo, %ebx, %ebx
18 imul $foo, bar, %ebx
19 imul $foo, %rbx, %rbx
20 imul $foo, bar, %rbx
/external/llvm/test/MC/X86/
H A Dx86_64-signed-reloc.s13 imul $foo, %rax // CHECK-NEXT: R_X86_64_32S label
/external/chromium_org/media/base/simd/
H A Dlinear_scale_yuv_to_rgb_mmx_x64.asm65 imul WIDTHq, SOURCE_DXq ; source_width = width * source_dx
80 imul COMPRq, FRACTIONq
82 imul COMPLq, FRACTIONq
90 ; Trick here to imul COMPL first then COMPR.
92 imul COMPLq, FRACTIONq
94 imul COMPRq, FRACTIONq
107 imul COMPRq, FRACTIONq
109 imul COMPLq, FRACTIONq
125 imul COMPRq, FRACTIONq
127 imul COMPL
[all...]
H A Dlinear_scale_yuv_to_rgb_mmx.inc55 imul WIDTH_ARG_REGq, SOURCE_DX_ARG_REGq ; source_width = width * source_dx
79 imul COMPRq, TEMPq
81 imul COMPLq, TEMPq
100 imul COMPRq, TEMPq
102 imul COMPLq, TEMPq
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dstrict.asm74 imul eax, 4 label
75 imul eax, strict 4 ; NASM generates dword, yasm generates byte label
76 imul eax, byte 4 label
77 imul eax, strict byte 4 label
78 imul eax, dword 4 ; optimized to byte label
79 imul eax, strict dword 4 label
80 imul eax, 400 label
81 imul eax, strict 400 label
82 imul eax, byte 400 ; generates warning label
83 imul ea label
84 imul eax, dword 400 label
85 imul eax, strict dword 400 label
[all...]
H A Dgenopcode.asm84 imul eax, 4 label
/external/aac/libFDK/include/x86/
H A Dfixmul_x86.h114 imul b
127 imul b
155 asm( "imul %2;\n"
168 asm ( "imul %2;"
/external/chromium_org/v8/test/mjsunit/
H A Dmath-imul.js30 var imul_func = Math.imul;
40 function imul_meth_closure(a, b) { return Math.imul(a, b); }
47 assertEquals(expected, Math.imul(a, b));
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
H A Dbuffertotexture11_vs.h55 imul null, r0.xy, cb0[0].wwww, cb0[0].yzyy
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-x87.cc121 __ imul(edx, ecx);
181 __ imul(edx, Operand(ebx, ecx, times_4, 10000));
182 __ imul(edx, ecx, 12);
183 __ imul(edx, Operand(edx, eax, times_2, 42), 8);
184 __ imul(edx, ecx, 1000);
185 __ imul(edx, Operand(ebx, ecx, times_4, 1), 9000);
248 __ imul(edx, ecx, 12);
249 __ imul(edx, ecx, 1000);
H A Dtest-disasm-ia32.cc121 __ imul(edx, ecx);
181 __ imul(edx, Operand(ebx, ecx, times_4, 10000));
182 __ imul(edx, ecx, 12);
183 __ imul(edx, Operand(edx, eax, times_2, 42), 8);
184 __ imul(edx, ecx, 1000);
185 __ imul(edx, Operand(ebx, ecx, times_4, 1), 9000);
248 __ imul(edx, ecx, 12);
249 __ imul(edx, ecx, 1000);
H A Dtest-assembler-x87.cc128 __ imul(eax, edx);
/external/srec/srec/cfront/
H A Dhimul32.h80 // The x86 imul instruction, given a single 32-bit operand, computes
89 imul factor2
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
H A Dx86-mont.pl315 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
354 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
445 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
547 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
/external/openssl/crypto/bn/asm/
H A Dx86-mont.pl315 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
354 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
445 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
547 &imul ($word,&DWP($frame,"esp")); # n0*tp[0]
/external/chromium_org/v8/src/x87/
H A Dassembler-x87.h692 void imul(Register src); // edx:eax = eax * src.
693 void imul(Register dst, Register src) { imul(dst, Operand(src)); }
694 void imul(Register dst, const Operand& src); // dst = dst * src.
695 void imul(Register dst, Register src, int32_t imm32); // dst = src * imm32.
696 void imul(Register dst, const Operand& src, int32_t imm32);
H A Dassembler-x87.cc775 void Assembler::imul(Register reg) { function in class:v8::internal::Assembler
782 void Assembler::imul(Register dst, const Operand& src) { function in class:v8::internal::Assembler
790 void Assembler::imul(Register dst, Register src, int32_t imm32) { function in class:v8::internal::Assembler
791 imul(dst, Operand(src), imm32);
795 void Assembler::imul(Register dst, const Operand& src, int32_t imm32) { function in class:v8::internal::Assembler
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32.h709 void imul(Register src); // edx:eax = eax * src.
710 void imul(Register dst, Register src) { imul(dst, Operand(src)); }
711 void imul(Register dst, const Operand& src); // dst = dst * src.
712 void imul(Register dst, Register src, int32_t imm32); // dst = src * imm32.
713 void imul(Register dst, const Operand& src, int32_t imm32);
/external/chromium_org/third_party/freetype/include/freetype/config/
H A Dftconfig.h412 "imul %%edx\n"
450 imul edx
/external/pdfium/core/include/thirdparties/freetype/freetype/config/
H A Dftconfig.h413 "imul %%edx\n"
451 imul edx
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/config/
H A Dftconfig.h413 "imul %%edx\n"
451 imul edx
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_emit_nvc0.cpp1834 int imul; // integer MUL to MUL delay 3 member in struct:nv50_ir::SchedDataCalculator::RegScores::Resource
1866 res.imul += delta;
1907 max = MAX2(res.imul, max);
1929 res.imul = MAX2(res.imul, that->res.imul);
1952 if (res.imul > cycle)
1953 INFO("imul @ %i\n", res.imul);
2133 ready = score->res.imul;
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_emit_nvc0.cpp1834 int imul; // integer MUL to MUL delay 3 member in struct:nv50_ir::SchedDataCalculator::RegScores::Resource
1866 res.imul += delta;
1907 max = MAX2(res.imul, max);
1929 res.imul = MAX2(res.imul, that->res.imul);
1952 if (res.imul > cycle)
1953 INFO("imul @ %i\n", res.imul);
2133 ready = score->res.imul;
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_temporal_filter_apply_sse2.asm77 imul rcx, [rsp + block_height]
/external/chromium_org/third_party/boringssl/win-x86_64/crypto/bn/
H A Dx86_64-mont.asm63 imul rbp,r10
126 imul rbp,r10
275 imul rbp,r10
413 imul rbp,r10

Completed in 5847 milliseconds

123