Lines Matching full:inputs
25 // Extract the inputs from the old use and input pointers and copy them
53 Node* const* inputs, bool has_extensible_inputs) {
60 // Verify that none of the inputs are {nullptr}.
62 if (inputs[i] == nullptr) {
70 // Allocate out-of-line inputs.
87 // Allocate node with inline inputs.
107 Node* to = *inputs++;
121 Node* const* const inputs = node->has_inline_inputs()
124 Node* const clone = New(zone, id, node->op(), input_count, inputs, false);
156 // switch to out of line inputs.
163 // use current out of line inputs.
166 // out of space in out-of-line inputs.
297 // Inputs must either be out of line or within the inline capacity.
344 for (Node* input : this->inputs()) {
390 Node::Inputs::const_iterator Node::Inputs::const_iterator::operator++(int n) {
397 bool Node::Inputs::empty() const { return begin() == end(); }