Lines Matching refs:inList
28 GateRef CircuitBuilder::NewMerge(GateRef *inList, size_t controlCount) in NewMerge() argument
30 …return circuit_->NewGate(OpCode(OpCode::MERGE), controlCount, controlCount, inList, GateType::EMPT… in NewMerge()
35 std::vector<GateRef> inList; in NewSelectorGate() local
36 inList.push_back(control); in NewSelectorGate()
38 inList.push_back(Circuit::NullGate()); in NewSelectorGate()
41 return circuit_->NewGate(opCode, valueCounts, inList, StubMachineType2GateType(type)); in NewSelectorGate()
47 std::vector<GateRef> inList; in NewSelectorGate() local
48 inList.push_back(control); in NewSelectorGate()
50 inList.push_back(values[i]); in NewSelectorGate()
53 return circuit_->NewGate(opCode, valueCounts, inList, StubMachineType2GateType(type)); in NewSelectorGate()
59 std::vector<GateRef> inList; in NewSelectorGate() local
60 inList.push_back(control); in NewSelectorGate()
62 inList.push_back(Circuit::NullGate()); in NewSelectorGate()
65 …return circuit_->NewGate(opcode, machineType, valueCounts, inList, StubMachineType2GateType(type)); in NewSelectorGate()
71 std::vector<GateRef> inList; in NewSelectorGate() local
72 inList.push_back(control); in NewSelectorGate()
74 inList.push_back(values[i]); in NewSelectorGate()
77 …return circuit_->NewGate(opcode, machineType, valueCounts, inList, StubMachineType2GateType(type)); in NewSelectorGate()