/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
addrop.asm | 2 idiv al ; F6 F8 label 3 idiv ax ; 66 F7 F8 label 4 idiv eax ; F7 F8 label 5 idiv byte [word 0] ; 67 F6 3E 00 00 label 6 idiv byte [dword 0xFFFFFFFF] ; F6 3D FF FF FF FF label 7 idiv byte [0] ; F6 3D 00 00 00 00 label 8 a16 idiv byte [word 0] ; 67 67 F6 3E 00 00 9 ;a16 idiv byte [dword 0] ; 67 F6 3D 00 00 00 00 10 a16 idiv byte [0] ; 67 F6 3D 00 00 11 a32 idiv byte [0] ; F6 3D 00 00 00 0 14 idiv al label 15 idiv ax label 16 idiv eax label 18 idiv byte [word 0] label 19 idiv byte [dword 0xFFFFFFFF] label 20 idiv byte [0] label 21 idiv dword [es:dword 5] label 22 idiv dword [byte es:5] label 23 idiv word [es:dword edi+5] label [all...] |
addrop-err.asm | 2 a16 idiv byte [dword 0] ; 67 F6 3D 00 00 00 00
|
/external/compiler-rt/lib/builtins/ |
divsi3.c | 19 ARM_EABI_FNALIAS(idiv, divsi3)
|
/ndk/tests/build/b8247455-hidden-cxa/jni/ |
Android.mk | 8 # File idiv.cpp contains code potentially causes divide-by-zero exception. libidiv.so 21 LOCAL_SRC_FILES:= idiv.cpp
|
/dalvik/dx/tests/102-verify-nonwide-math/ |
run | 42 oneop idiv
|
/external/llvm/test/MC/ARM/ |
directive-arch_extension-idiv.s | 16 .arch_extension idiv 17 @ CHECK-V6: error: architectural extension 'idiv' is not allowed for the current base architecture 18 @ CHECK-V6-NEXT: .arch_extension idiv 20 @ CHECK-V7M: error: architectural extension 'idiv' is not allowed for the current base architecture 21 @ CHECK-V7M-NEXT: .arch_extension idiv 24 .type idiv,%function 25 idiv: label 34 @ CHECK-V6: error: architectural extension 'idiv' is not allowed for the current base architecture 37 @ CHECK-V7M: error: architectural extension 'idiv' is not allowed for the current base architecture
|
/external/llvm/test/MC/X86/ |
intel-syntax.s | 422 idiv AL, BL 423 idiv AX, BX 424 idiv EAX, ECX 425 idiv EAX, [ECX*8+EBX+0xdeadbeef] 426 idiv EAX, [0x45] 427 idiv EAX, [0x7eed] 428 idiv EAX, [0xbabecafe] 429 idiv EAX, [0x12345678]
|
x86-64.s | 1017 idiv %bl,%al 1018 idiv %bx,%ax 1019 idiv %ecx,%eax 1020 idiv 0xdeadbeef(%ebx,%ecx,8),%eax 1021 idiv 0x45,%eax 1022 idiv 0x7eed,%eax 1023 idiv 0xbabecafe,%eax 1024 idiv 0x12345678,%eax
|
/art/test/003-omnibus-opcodes/src/ |
IntMath.java | 525 static void bigDivideOverflow(int idiv, long ldiv) { 530 int intDivResult = mostNegInt / idiv; 531 int intModResult = mostNegInt % idiv;
|
/external/chromium_org/v8/test/cctest/ |
test-disasm-x87.cc | 170 __ idiv(edx); 171 __ idiv(Operand(edx, ecx, times_1, 1)); 172 __ idiv(Operand(esp, 12));
|
test-disasm-ia32.cc | 170 __ idiv(edx); 171 __ idiv(Operand(edx, ecx, times_1, 1)); 172 __ idiv(Operand(esp, 12));
|
/bionic/libc/tools/ |
genlibgcc_compat.py | 56 * HW idiv instructions so the system libc.so doesn't pull in the reference to
|
/external/chromium_org/v8/src/x87/ |
assembler-x87.h | 686 void idiv(Register src) { idiv(Operand(src)); } 687 void idiv(const Operand& src); [all...] |
/external/chromium_org/v8/src/ia32/ |
assembler-ia32.h | 703 void idiv(Register src) { idiv(Operand(src)); } 704 void idiv(const Operand& src); [all...] |
lithium-codegen-ia32.cc | [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/ |
scale_win.cc | [all...] |
/external/chromium_org/third_party/libyuv/source/ |
scale_win.cc | [all...] |
/external/chromium_org/v8/src/compiler/ia32/ |
code-generator-ia32.cc | 187 __ idiv(i.InputOperand(1)); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_operator.py | 469 def __idiv__ (self, other): return "idiv" 484 self.assertEqual(operator.idiv (c, 5), "idiv") 499 self.assertEqual(operator.__idiv__ (c, 5), "idiv")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_operator.py | 469 def __idiv__ (self, other): return "idiv" 484 self.assertEqual(operator.idiv (c, 5), "idiv") 499 self.assertEqual(operator.__idiv__ (c, 5), "idiv")
|
/external/chromium_org/third_party/mesa/src/src/mesa/x86/ |
assyntax.h | 435 #define IDIV_L(a) CHOICE(idivl a, idivl a, _LTOG idiv a) 436 #define IDIV_W(a) CHOICE(idivw a, idivw a, _WTOG idiv a) [all...] |
/external/mesa3d/src/mesa/x86/ |
assyntax.h | 435 #define IDIV_L(a) CHOICE(idivl a, idivl a, _LTOG idiv a) 436 #define IDIV_W(a) CHOICE(idivw a, idivw a, _WTOG idiv a) [all...] |
/external/valgrind/main/VEX/test/ |
test-amd64.c | 444 #define OP idiv [all...] |
test-i386.c | 415 #define OP idiv [all...] |
/external/chromium_org/v8/src/x64/ |
assembler-x64.h | 445 V(idiv) \ [all...] |