Home | History | Annotate | Download | only in compiler

Lines Matching refs:input_ptr

89     Node** input_ptr = GetInputPtr(index);
90 Node* old_to = *input_ptr;
94 *input_ptr = new_to;
202 void ExtractFrom(Use* use_ptr, Node** input_ptr, int count);
214 Node** input_ptr() {
376 Edge(Node::Use* use, Node** input_ptr) : use_(use), input_ptr_(input_ptr) {
378 DCHECK_NOT_NULL(input_ptr);
379 DCHECK_EQ(input_ptr, use->input_ptr());
482 Edge operator*() const { return Edge(current_, current_->input_ptr()); }