Lines Matching defs:in
4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
432 // NOTICE-PGO: consider to delete this function in Part3, only primitive_type_check use,
433 // which is generate in the retype pass
1010 bool GateAccessor::IsIn(GateRef g, GateRef in) const
1015 if (i == in) {
1363 void GateAccessor::NewIn(GateRef gate, size_t idx, GateRef in)
1365 circuit_->NewIn(gate, idx, in);
1394 void GateAccessor::ReplaceIn(GateRef gate, size_t index, GateRef in)
1396 circuit_->ModifyIn(gate, index, in);
1406 void GateAccessor::ReplaceStateIn(GateRef gate, GateRef in, size_t index)
1409 circuit_->ModifyIn(gate, index, in);
1412 void GateAccessor::ReplaceDependIn(GateRef gate, GateRef in, size_t index)
1416 circuit_->ModifyIn(gate, stateCount + index, in);
1419 void GateAccessor::ReplaceOrNewDependIn(GateRef gate, GateRef in, size_t index)
1425 circuit_->NewIn(gate, stateCount + index, in);
1427 circuit_->ModifyIn(gate, stateCount + index, in);
1431 void GateAccessor::ReplaceValueIn(GateRef gate, GateRef in, size_t index)
1435 circuit_->ModifyIn(gate, valueStartIndex + index, in);
1777 void GateAccessor::ReplaceFrameStateIn(GateRef gate, GateRef in)
1782 circuit_->ModifyIn(gate, index, in);