/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/chromium_org/media/base/simd/ |
linear_scale_yuv_to_rgb_mmx_x64.asm | 61 imul WIDTHq, SOURCE_DXq ; source_width = width * source_dx 76 imul COMPRq, FRACTIONq 78 imul COMPLq, FRACTIONq 86 ; Trick here to imul COMPL first then COMPR. 88 imul COMPLq, FRACTIONq 90 imul COMPRq, FRACTIONq 103 imul COMPRq, FRACTIONq 105 imul COMPLq, FRACTIONq 121 imul COMPRq, FRACTIONq 123 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/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/cctest/ |
test-disasm-x64.cc | 102 __ imul(rdx, rcx); 152 __ imul(rdx, Operand(rbx, rcx, times_4, 10000)); 153 __ imul(rdx, rcx, Immediate(12)); 154 __ imul(rdx, rcx, Immediate(1000)); 205 __ imul(rdx, rcx, Immediate(12)); 206 __ imul(rdx, rcx, Immediate(1000));
|
test-disasm-ia32.cc | 109 __ imul(edx, ecx); 164 __ imul(edx, Operand(ebx, ecx, times_4, 10000)); 165 __ imul(edx, ecx, 12); 166 __ imul(edx, ecx, 1000); 220 __ imul(edx, ecx, 12); 221 __ imul(edx, ecx, 1000);
|
/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));
|
/external/v8/test/cctest/ |
test-disasm-x64.cc | 119 __ imul(rdx, rcx); 169 __ imul(rdx, Operand(rbx, rcx, times_4, 10000)); 170 __ imul(rdx, rcx, Immediate(12)); 171 __ imul(rdx, rcx, Immediate(1000)); 222 __ imul(rdx, rcx, Immediate(12)); 223 __ imul(rdx, rcx, Immediate(1000));
|
test-disasm-ia32.cc | 125 __ imul(edx, ecx); 180 __ imul(edx, Operand(ebx, ecx, times_4, 10000)); 181 __ imul(edx, ecx, 12); 182 __ imul(edx, ecx, 1000); 236 __ imul(edx, ecx, 12); 237 __ imul(edx, ecx, 1000);
|
/external/chromium_org/third_party/openssl/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/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]
|
/dalvik/vm/compiler/codegen/x86/libenc/ |
encoder.h | 499 // multiply instructions: mul, imul 501 ENCODER_DECLARE_EXPORT char * imul(char * stream, const R_Opnd & r, const RM_Opnd & rm, Opnd_Size sz = size_platf); 502 ENCODER_DECLARE_EXPORT char * imul(char * stream, const R_Opnd & r, const Imm_Opnd & imm, Opnd_Size sz = size_platf); 503 ENCODER_DECLARE_EXPORT char * imul(char * stream, const R_Opnd & r, const RM_Opnd & rm, const Imm_Opnd& imm, Opnd_Size sz = size_platf);
|
encoder.inl | 258 // multiply instructions: mul, imul 267 ENCODER_DECLARE_EXPORT char * imul(char * stream, const R_Opnd & r, const RM_Opnd & rm, Opnd_Size sz) { 274 ENCODER_DECLARE_EXPORT char * imul(char * stream, const R_Opnd & r, const Imm_Opnd & imm, Opnd_Size sz) { 281 ENCODER_DECLARE_EXPORT char * imul(char * stream, const R_Opnd & r, const RM_Opnd & rm,
|
/external/chromium_org/third_party/freetype/include/freetype/config/ |
ftconfig.h | 412 "imul %%edx\n" 450 imul edx
|
/external/freetype/include/freetype/config/ |
ftconfig.h | 412 "imul %%edx\n" 450 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/v8/src/ia32/ |
assembler-ia32.h | 814 void imul(Register src); // edx:eax = eax * src. 815 void imul(Register dst, Register src) { imul(dst, Operand(src)); } 816 void imul(Register dst, const Operand& src); // dst = dst * src. 817 void imul(Register dst, Register src, int32_t imm32); // dst = src * imm32. [all...] |
/external/v8/src/ia32/ |
assembler-ia32.h | 781 void imul(Register src); // edx:eax = eax * src. 782 void imul(Register dst, Register src) { imul(dst, Operand(src)); } 783 void imul(Register dst, const Operand& src); // dst = dst * src. 784 void imul(Register dst, Register src, int32_t imm32); // dst = src * imm32. [all...] |
/external/v8/src/x64/ |
assembler-x64.h | 931 void imul(Register src); // rdx:rax = rax * src. 932 void imul(Register dst, Register src); // dst = dst * src. 933 void imul(Register dst, const Operand& src); // dst = dst * src. 934 void imul(Register dst, Register src, Immediate imm); // dst = src * imm. [all...] |