Lines Matching refs:OutOfLineInputs
11 Node::OutOfLineInputs* Node::OutOfLineInputs::New(Zone* zone, int capacity) {
13 sizeof(OutOfLineInputs) + capacity * (sizeof(Node*) + sizeof(Use));
15 reinterpret_cast<intptr_t>(zone->Allocate<Node::OutOfLineInputs>(size));
16 Node::OutOfLineInputs* outline =
17 reinterpret_cast<OutOfLineInputs*>(raw_buffer + capacity * sizeof(Use));
23 void Node::OutOfLineInputs::ExtractFrom(Use* old_use_ptr,
81 OutOfLineInputs* outline = OutOfLineInputs::New(zone, capacity);
83 // Allocate node, with space for OutOfLineInputs pointer.
97 // an OutOfLineInputs pointer can be stored when inputs are added later.
172 OutOfLineInputs* outline = nullptr;
175 outline = OutOfLineInputs::New(zone, input_count * 2 + 3);
185 outline = OutOfLineInputs::New(zone, input_count * 2 + 3);