Home
last modified time | relevance | path

Searched refs:cls1 (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZInstrFormats.td2685 RegisterOperand cls1, RegisterOperand cls2>
2686 : InstRR<opcode, (outs cls1:$R1), (ins cls2:$R2),
2688 [(set cls1:$R1, (operator cls2:$R2))]> {
2689 let OpKey = mnemonic#cls1;
2694 RegisterOperand cls1, RegisterOperand cls2>
2695 : InstRRE<opcode, (outs cls1:$R1), (ins cls2:$R2),
2697 [(set cls1:$R1, (operator cls2:$R2))]> {
2698 let OpKey = mnemonic#cls1;
2711 RegisterOperand cls1, RegisterOperand cls2>
2712 : InstRRFc<opcode, (outs cls2:$R2, cls1:$R1), (ins cls1:$R1src),
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZInstrFormats.td1269 RegisterOperand cls1, RegisterOperand cls2>
1270 : InstRR<opcode, (outs cls1:$R1), (ins cls2:$R2),
1272 [(set cls1:$R1, (operator cls2:$R2))]> {
1273 let OpKey = mnemonic ## cls1;
1278 RegisterOperand cls1, RegisterOperand cls2>
1279 : InstRRE<opcode, (outs cls1:$R1), (ins cls2:$R2),
1281 [(set cls1:$R1, (operator cls2:$R2))]> {
1282 let OpKey = mnemonic ## cls1;
1286 class UnaryRRF<string mnemonic, bits<16> opcode, RegisterOperand cls1,
1288 : InstRRF<opcode, (outs cls1:$R1), (ins imm32zx4:$R3, cls2:$R2),
[all …]
/external/iproute2/etc/iproute2/
Dbpf_pinning6 #5 tc/cls1
/external/scapy/scapy/
Dpacket.py898 match = lambda cls1, cls2: issubclass(cls1, cls2) argument
900 match = lambda cls1, cls2: cls1 == cls2 argument
/external/python/cpython3/Lib/test/
Dtest_dataclasses.py1631 cls1 = dataclass(cls)
1633 self.assertEqual(cls1, cls)
1645 cls1 = dataclass(cls)
1647 self.assertEqual(cls1, cls)
1648 self.assertEqual(asdict(cls1(1)), {'x': 1, 'y': 5})