/external/llvm/test/CodeGen/X86/ |
vector-blend.ll | 518 define <2 x double> @testb(<2 x double> %x, <2 x double> %y) { 519 ; SSE2-LABEL: testb: 528 ; SSSE3-LABEL: testb: 537 ; SSE41-LABEL: testb: 546 ; AVX-LABEL: testb: [all...] |
avx512dq-intrinsics.ll | 495 ; CHECK-NEXT: testb %al, %al 502 ; CHECK-NEXT: testb %cl, %cl 525 ; CHECK-NEXT: testb %al, %al 532 ; CHECK-NEXT: testb %cl, %cl [all...] |
fast-isel-select-cmov2.ll | 23 ; FAST-NEXT: testb %al, %cl
|
select.ll | 377 ; CHECK: testb
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
URITest.java | 266 fail("TestB, URISyntaxException expected, but not received."); 268 assertEquals("TestB, Wrong URISyntaxException index, ", 4, e1 621 assertEquals("TestB", 0, uri.compareTo(uri2)); [all...] |
/external/v8/src/builtins/x64/ |
builtins-x64.cc | [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/ |
386Ops.go | 234 {name: "TESTB", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTB", typ: "Flags"}, // (arg0 & arg1) compare to 0 237 {name: "TESTBconst", argLength: 1, reg: gp1flags, asm: "TESTB", typ: "Flags", aux: "Int8"}, // (arg0 & auxint) compare to 0 [all...] |
AMD64Ops.go | 260 {name: "TESTB", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTB", typ: "Flags"}, // (arg0 & arg1) compare to 0 264 {name: "TESTBconst", argLength: 1, reg: gp1flags, asm: "TESTB", typ: "Flags", aux: "Int8"}, // (arg0 & auxint) compare to 0 [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/ |
386Ops.go | 234 {name: "TESTB", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTB", typ: "Flags"}, // (arg0 & arg1) compare to 0 237 {name: "TESTBconst", argLength: 1, reg: gp1flags, asm: "TESTB", typ: "Flags", aux: "Int8"}, // (arg0 & auxint) compare to 0 [all...] |
AMD64Ops.go | 260 {name: "TESTB", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTB", typ: "Flags"}, // (arg0 & arg1) compare to 0 264 {name: "TESTBconst", argLength: 1, reg: gp1flags, asm: "TESTB", typ: "Flags", aux: "Int8"}, // (arg0 & auxint) compare to 0 [all...] |
/toolchain/binutils/binutils-2.27/opcodes/ |
z8k-opc.h | [all...] |
/external/swiftshader/third_party/LLVM/test/MC/Disassembler/X86/ |
x86-32.txt | 361 # CHECK: testb $0, %al
|
/prebuilts/go/darwin-x86/src/runtime/ |
memmove_amd64.s | 67 TESTB $1, runtime·useAVXmemmove(SB)
|
/prebuilts/go/linux-x86/src/runtime/ |
memmove_amd64.s | 67 TESTB $1, runtime·useAVXmemmove(SB)
|
/external/llvm/test/MC/X86/ |
intel-syntax.s | 479 // CHECK: testb (%ecx), %al 480 // CHECK: testb (%ecx), %al
|
x86-16.s | 33 // CHECK: testb %bl, %cl # encoding: [0x84,0xd9] 34 testb %bl, %cl
|
x86-32.s | 82 // CHECK: testb %bl, %cl # encoding: [0x84,0xd9] 83 testb %bl, %cl
|
/external/swiftshader/third_party/LLVM/test/MC/X86/ |
x86-32.s | 54 // CHECK: testb %bl, %cl # encoding: [0x84,0xcb] 55 testb %bl, %cl
|
/external/llvm/lib/Target/X86/ |
README.txt | 22 testb $32, %cl 501 testb %cl, %al 638 testb $1, %cl [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
README.txt | 33 testb $32, %cl 664 testb %cl, %al 801 testb $1, %cl [all...] |
/external/v8/src/x64/ |
assembler-x64.h | 775 void testb(Register reg, const Operand& op) { testb(op, reg); } 858 void testb(Register dst, Register src); 859 void testb(Register reg, Immediate mask); 860 void testb(const Operand& op, Immediate mask); 861 void testb(const Operand& op, Register reg); [all...] |
/external/v8/src/crankshaft/x64/ |
lithium-codegen-x64.cc | [all...] |
/external/python/cpython3/Lib/test/ |
test_xml_etree.py | 400 elem.set('testb', 'test2') 402 b'<test testa="testval" testb="test2">aa</test>') 403 self.assertEqual(sorted(elem.keys()), ['testa', 'testb']) 405 [('testa', 'testval'), ('testb', 'test2')]) 406 self.assertEqual(elem.attrib['testb'], 'test2') 407 elem.attrib['testb'] = 'test1' 410 b'<test testa="testval" testb="test1" testc="test2">aa</test>') [all...] |
/external/v8/src/full-codegen/x64/ |
full-codegen-x64.cc | 42 __ testb(reg, Immediate(kSmiTagMask)); 49 __ testb(reg, Immediate(kSmiTagMask)); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_csv.py | 367 class testB(csv.excel):
399 writer = csv.writer(fileobj, dialect=testB())
[all...] |