Searched refs:new_to (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
H A D | node.h | 77 void ReplaceInput(int index, Node* new_to) { in ReplaceInput() argument 82 if (old_to != new_to) { in ReplaceInput() 85 *input_ptr = new_to; in ReplaceInput() 86 if (new_to) new_to->AppendUse(use); in ReplaceInput() 90 void AppendInput(Zone* zone, Node* new_to); 91 void InsertInput(Zone* zone, int index, Node* new_to); 435 void UpdateTo(Node* new_to) { in UpdateTo() argument 437 if (old_to != new_to) { in UpdateTo() 439 *input_ptr_ = new_to; in UpdateTo() [all...] |
H A D | node.cc | 154 void Node::AppendInput(Zone* zone, Node* new_to) { in AppendInput() argument 156 DCHECK_NOT_NULL(new_to); in AppendInput() 163 *GetInputPtr(inline_count) = new_to; in AppendInput() 168 new_to->AppendUse(use); in AppendInput() 192 *GetInputPtr(input_count) = new_to; in AppendInput() 197 new_to->AppendUse(use); in AppendInput() 203 void Node::InsertInput(Zone* zone, int index, Node* new_to) { in InsertInput() argument 211 ReplaceInput(index, new_to); in InsertInput()
|
/third_party/NuttX/fs/tmpfs/ |
H A D | fs_tmpfs.c | 2295 struct tmpfs_object_s *new_to = tde->tde_object; in tmpfs_rename() local 2301 tdo = (struct tmpfs_directory_s *)new_to; in tmpfs_rename() 2311 if (old_to == new_to) in tmpfs_rename() 2319 if (old_to->to_type == TMPFS_REGULAR && new_to->to_type == TMPFS_DIRECTORY) in tmpfs_rename() 2325 if (old_to->to_type == TMPFS_DIRECTORY && new_to->to_type == TMPFS_REGULAR) in tmpfs_rename() 2333 ret = tmpfs_remove_dirent(newparent_tdo, new_to); in tmpfs_rename() 2339 if (new_to->to_type == TMPFS_DIRECTORY) in tmpfs_rename() 2341 (void)sem_destroy(&new_to->to_exclsem.ts_sem); in tmpfs_rename() 2342 kmm_free(new_to); in tmpfs_rename() 2346 tfo = (struct tmpfs_file_s *)new_to; in tmpfs_rename() [all...] |
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-compiler-tonode.cc | 1441 int new_to = std::max(to_replace.to(), to); in RationalizeConsecutiveAtoms() local 1442 list->at(start_pos) = CharacterRange::Range(new_from, new_to); in RationalizeConsecutiveAtoms() 1449 int new_to = std::max(list->at(end_pos - 1).to(), to); in RationalizeConsecutiveAtoms() local 1453 list->at(start_pos) = CharacterRange::Range(new_from, new_to); in RationalizeConsecutiveAtoms()
|
Completed in 8 milliseconds