HomeSort by relevance Sort by last modified time
    Searched refs:imul (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/llvm/test/MC/ELF/
relax-arith.s 7 // 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/
x86_64-signed-reloc.s 13 imul $foo, %rax // CHECK-NEXT: R_X86_64_32S label
  /external/chromium_org/media/base/simd/
linear_scale_yuv_to_rgb_mmx_x64.asm 65 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 COMPLq, FRACTION
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
strict.asm 74 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 eax, strict byte 400 ; generates warnin label
84 imul eax, dword 400 label
85 imul eax, strict dword 400 label
    [all...]
genopcode.asm 84 imul eax, 4 label
  /external/aac/libFDK/include/x86/
fixmul_x86.h 114 imul b
127 imul b
155 asm( "imul %2;\n"
168 asm ( "imul %2;"
  /dalvik/dx/tests/102-verify-nonwide-math/
run 43 oneop imul
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_list.py 58 def imul(a, b): a *= b function in function:ListTest.test_overflow
60 self.assertRaises((MemoryError, OverflowError), imul, lst, n)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_list.py 58 def imul(a, b): a *= b function in function:ListTest.test_overflow
60 self.assertRaises((MemoryError, OverflowError), imul, lst, n)
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
buffertotexture11_vs.h 55 imul null, r0.xy, cb0[0].wwww, cb0[0].yzyy
  /external/chromium_org/v8/test/cctest/
test-disasm-x87.cc 121 __ 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);
test-disasm-ia32.cc 121 __ 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);
  /external/srec/srec/cfront/
himul32.h 80 // The x86 imul instruction, given a single 32-bit operand, computes
83 // EAX, then IMUL, then take the high 32 bits (in EDX) and move them
89 imul factor2
  /external/chromium_org/v8/test/mjsunit/
math-imul.js 30 var imul_func = Math.imul;
40 function imul_meth_closure(a, b) { return Math.imul(a, b); }
47 assertEquals(expected, Math.imul(a, b));
  /bionic/libc/arch-x86_64/string/
sse2-memset-slm.S 76 imul %rsi, %rcx
  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
x86-mont.pl 315 &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/
x86-mont.pl 315 &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/
assembler-x87.h 692 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);
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.h 709 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);
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/config/
ftconfig.h 412 "imul %%edx\n"
450 imul edx
  /external/pdfium/core/include/thirdparties/freetype/freetype/config/
ftconfig.h 413 "imul %%edx\n"
451 imul edx
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/config/
ftconfig.h 413 "imul %%edx\n"
451 imul edx
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
nv50_ir_emit_nvc0.cpp 1834 int imul; \/\/ integer MUL to MUL delay 3 member in struct:nv50_ir::SchedDataCalculator::RegScores::Resource
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_emit_nvc0.cpp 1834 int imul; \/\/ integer MUL to MUL delay 3 member in struct:nv50_ir::SchedDataCalculator::RegScores::Resource
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
vp9_temporal_filter_apply_sse2.asm 77 imul rcx, [rsp + block_height]

Completed in 623 milliseconds

1 2 3 4