Lines Matching defs:input_ptr
90 Node** input_ptr = GetInputPtr(index);
91 Node* old_to = *input_ptr;
95 *input_ptr = new_to;
204 void ExtractFrom(Use* use_ptr, Node** input_ptr, int count);
216 Node** input_ptr() {
378 Edge(Node::Use* use, Node** input_ptr) : use_(use), input_ptr_(input_ptr) {
380 DCHECK_NOT_NULL(input_ptr);
381 DCHECK_EQ(input_ptr, use->input_ptr());
484 Edge operator*() const { return Edge(current_, current_->input_ptr()); }