HomeSort by relevance Sort by last modified time
    Searched refs:new_to (Results 1 - 3 of 3) sorted by null

  /external/v8/src/compiler/
node.h 88 void ReplaceInput(int index, Node* new_to) {
92 if (old_to != new_to) {
95 *input_ptr = new_to;
96 if (new_to) new_to->AppendUse(use);
102 void AppendInput(Zone* zone, Node* new_to);
103 void InsertInput(Zone* zone, int index, Node* new_to);
372 void UpdateTo(Node* new_to) {
374 if (old_to != new_to) {
376 *input_ptr_ = new_to;
    [all...]
node.cc 137 void Node::AppendInput(Zone* zone, Node* new_to) {
139 DCHECK_NOT_NULL(new_to);
146 *GetInputPtr(inline_count) = new_to;
150 new_to->AppendUse(use);
174 *GetInputPtr(input_count) = new_to;
178 new_to->AppendUse(use);
184 void Node::InsertInput(Zone* zone, int index, Node* new_to) {
192 ReplaceInput(index, new_to);
  /external/v8/src/regexp/
jsregexp.cc 6054 int new_to = Max(to_replace.to(), to); local
6062 int new_to = Max(list->at(end_pos - 1).to(), to); local
    [all...]

Completed in 1048 milliseconds