Home
last modified time | relevance | path

Searched refs:new_node (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/examples/scripting/
H A Ddictionary.c61 new_node->word = strdup(word); in insert()
62 new_node->left = NULL; in insert()
63 new_node->right = NULL; in insert()
64 root->left = new_node; in insert()
72 new_node->left = NULL; in insert()
73 new_node->right = NULL; in insert()
74 root->right = new_node; in insert()
93 new_node->word = new_word; in populate_dictionary()
94 new_node->left = NULL; in populate_dictionary()
95 new_node->right = NULL; in populate_dictionary()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/profile/
H A DGCDAProfiling.c114 struct fn_node* new_node = malloc(sizeof(struct fn_node)); in fn_list_insert() local
115 new_node->fn = fn; in fn_list_insert()
116 new_node->next = NULL; in fn_list_insert()
117 new_node->id = CURRENT_ID; in fn_list_insert()
120 list->head = list->tail = new_node; in fn_list_insert()
122 list->tail->next = new_node; in fn_list_insert()
123 list->tail = new_node; in fn_list_insert()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h142 Node &new_node = nodes[s]; in Put() local
143 new_node.store(s, args, h); in Put()
144 new_node.link = s2; in Put()
/llvm-project-15.0.7/lldb/docs/use/
H A Dpython.rst683 new_node->word = strdup(word);
684 new_node->left = NULL;
685 new_node->right = NULL;
686 root->left = new_node;
694 new_node->left = NULL;
695 new_node->right = NULL;
696 root->right = new_node;
715 new_node->word = new_word;
716 new_node->left = NULL;
717 new_node->right = NULL;
[all …]