Home
last modified time | relevance | path

Searched refs:old_to (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dnode.h81 Node* old_to = *input_ptr; in ReplaceInput() local
82 if (old_to != new_to) { in ReplaceInput()
84 if (old_to) old_to->RemoveUse(use); in ReplaceInput()
436 Node* old_to = *input_ptr_; in UpdateTo() local
437 if (old_to != new_to) { in UpdateTo()
438 if (old_to) old_to->RemoveUse(use_); in UpdateTo()
Dnode.cc36 Node* old_to = *old_input_ptr; in ExtractFrom() local
37 if (old_to) { in ExtractFrom()
39 old_to->RemoveUse(old_use_ptr); in ExtractFrom()
40 *new_input_ptr = old_to; in ExtractFrom()
41 old_to->AppendUse(new_use_ptr); in ExtractFrom()
/third_party/NuttX/fs/tmpfs/
Dfs_tmpfs.c2204 struct tmpfs_object_s *old_to; in tmpfs_rename() local
2276 old_to = (struct tmpfs_object_s *)oldVnode->data; in tmpfs_rename()
2281 if (oldparent == NULL || old_to == NULL) in tmpfs_rename()
2289 tmpfs_lock_object(old_to); in tmpfs_rename()
2291 old_to->to_refs++; 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()
2367 ret = tmpfs_remove_dirent(oldparent, old_to); in tmpfs_rename()
2375 ret = tmpfs_add_dirent(&newparent_tdo, old_to, copy); in tmpfs_rename()
[all …]