Lines Matching refs:tmp_
373 tmp_ = node_cache_->temp_nodes_.back(); in Constructor()
375 int tmp_input_count = tmp_->InputCount(); in Constructor()
377 tmp_->TrimInputCount(input_count); in Constructor()
381 tmp_->ReplaceInput(i, inputs[i]); in Constructor()
383 tmp_->AppendInput(node_cache_->graph_->zone(), inputs[i]); in Constructor()
386 NodeProperties::ChangeOp(tmp_, op); in Constructor()
388 tmp_ = node_cache_->graph_->NewNode(op, input_count, inputs); in Constructor()
390 NodeProperties::SetType(tmp_, type); in Constructor()
394 DCHECK(tmp_ || from_); in Get()
396 if (!tmp_) { in Get()
400 node = node_cache_->Query(tmp_); in Get()
402 node_cache_->temp_nodes_.push_back(tmp_); in Get()
404 node = tmp_; in Get()
408 tmp_ = from_ = nullptr; in Get()
413 DCHECK(tmp_ || from_); in MutableNode()
414 if (!tmp_) { in MutableNode()
416 tmp_ = node_cache_->graph_->CloneNode(from_); in MutableNode()
418 tmp_ = node_cache_->temp_nodes_.back(); in MutableNode()
421 int tmp_input_count = tmp_->InputCount(); in MutableNode()
423 tmp_->TrimInputCount(from_input_count); in MutableNode()
427 tmp_->ReplaceInput(i, from_->InputAt(i)); in MutableNode()
429 tmp_->AppendInput(node_cache_->graph_->zone(), from_->InputAt(i)); in MutableNode()
432 NodeProperties::SetType(tmp_, NodeProperties::GetType(from_)); in MutableNode()
433 NodeProperties::ChangeOp(tmp_, from_->op()); in MutableNode()
436 return tmp_; in MutableNode()