| /linux-4.1.27/fs/hfs/ | 
| D | brec.c | 67 	struct hfs_bnode *node, *new_node;  in hfs_brec_insert()  local 82 	new_node = NULL;  in hfs_brec_insert() 98 		if (new_node)  in hfs_brec_insert() 100 		new_node = hfs_bnode_split(fd);  in hfs_brec_insert() 101 		if (IS_ERR(new_node))  in hfs_brec_insert() 102 			return PTR_ERR(new_node);  in hfs_brec_insert() 138 	if (!rec && new_node != node) {  in hfs_brec_insert() 143 	if (new_node) {  in hfs_brec_insert() 145 		if (!new_node->parent) {  in hfs_brec_insert() 147 			new_node->parent = tree->root;  in hfs_brec_insert() [all …] 
 | 
| /linux-4.1.27/fs/hfsplus/ | 
| D | brec.c | 65 	struct hfs_bnode *node, *new_node;  in hfs_brec_insert()  local 80 	new_node = NULL;  in hfs_brec_insert() 96 		if (new_node)  in hfs_brec_insert() 98 		new_node = hfs_bnode_split(fd);  in hfs_brec_insert() 99 		if (IS_ERR(new_node))  in hfs_brec_insert() 100 			return PTR_ERR(new_node);  in hfs_brec_insert() 138 	if (!rec && new_node != node) {  in hfs_brec_insert() 143 	if (new_node) {  in hfs_brec_insert() 145 		if (!new_node->parent) {  in hfs_brec_insert() 147 			new_node->parent = tree->root;  in hfs_brec_insert() [all …] 
 | 
| /linux-4.1.27/tools/perf/util/ | 
| D | rblist.c | 17 	struct rb_node *parent = NULL, *new_node;  in rblist__add_node()  local 33 	new_node = rblist->node_new(rblist, new_entry);  in rblist__add_node() 34 	if (new_node == NULL)  in rblist__add_node() 37 	rb_link_node(new_node, parent, p);  in rblist__add_node() 38 	rb_insert_color(new_node, &rblist->entries);  in rblist__add_node() 56 	struct rb_node *parent = NULL, *new_node = NULL;  in __rblist__findnew()  local 73 		new_node = rblist->node_new(rblist, entry);  in __rblist__findnew() 74 		if (new_node) {  in __rblist__findnew() 75 			rb_link_node(new_node, parent, p);  in __rblist__findnew() 76 			rb_insert_color(new_node, &rblist->entries);  in __rblist__findnew() [all …] 
 | 
| /linux-4.1.27/drivers/net/wireless/mwifiex/ | 
| D | 11n_rxreorder.c | 328 	struct mwifiex_rx_reorder_tbl *tbl, *new_node;  in mwifiex_11n_create_rx_reorder_tbl()  local 343 	new_node = kzalloc(sizeof(struct mwifiex_rx_reorder_tbl), GFP_KERNEL);  in mwifiex_11n_create_rx_reorder_tbl() 344 	if (!new_node)  in mwifiex_11n_create_rx_reorder_tbl() 347 	INIT_LIST_HEAD(&new_node->list);  in mwifiex_11n_create_rx_reorder_tbl() 348 	new_node->tid = tid;  in mwifiex_11n_create_rx_reorder_tbl() 349 	memcpy(new_node->ta, ta, ETH_ALEN);  in mwifiex_11n_create_rx_reorder_tbl() 350 	new_node->start_win = seq_num;  in mwifiex_11n_create_rx_reorder_tbl() 351 	new_node->init_win = seq_num;  in mwifiex_11n_create_rx_reorder_tbl() 352 	new_node->flags = 0;  in mwifiex_11n_create_rx_reorder_tbl() 371 		last_seq, new_node->start_win);  in mwifiex_11n_create_rx_reorder_tbl() [all …] 
 | 
| D | 11n.c | 528 	struct mwifiex_tx_ba_stream_tbl *new_node;  in mwifiex_create_ba_tbl()  local 533 		new_node = kzalloc(sizeof(struct mwifiex_tx_ba_stream_tbl),  in mwifiex_create_ba_tbl() 535 		if (!new_node)  in mwifiex_create_ba_tbl() 542 		INIT_LIST_HEAD(&new_node->list);  in mwifiex_create_ba_tbl() 544 		new_node->tid = tid;  in mwifiex_create_ba_tbl() 545 		new_node->ba_status = ba_status;  in mwifiex_create_ba_tbl() 546 		memcpy(new_node->ra, ra, ETH_ALEN);  in mwifiex_create_ba_tbl() 549 		list_add_tail(&new_node->list, &priv->tx_ba_stream_tbl_ptr);  in mwifiex_create_ba_tbl()
  | 
| /linux-4.1.27/drivers/acpi/acpica/ | 
| D | nssearch.c | 295 	struct acpi_namespace_node *new_node;  in acpi_ns_search_and_enter()  local 376 	new_node = acpi_ns_create_node(target_name);  in acpi_ns_search_and_enter() 377 	if (!new_node) {  in acpi_ns_search_and_enter() 386 		new_node->flags |= ANOBJ_IS_EXTERNAL;  in acpi_ns_search_and_enter() 391 		new_node->flags |= ANOBJ_TEMPORARY;  in acpi_ns_search_and_enter() 396 	acpi_ns_install_node(walk_state, node, new_node, type);  in acpi_ns_search_and_enter() 397 	*return_node = new_node;  in acpi_ns_search_and_enter()
  | 
| D | nsaccess.c | 70 	struct acpi_namespace_node *new_node;  in acpi_ns_root_initialize()  local 112 					ACPI_NS_NO_UPSEARCH, NULL, &new_node);  in acpi_ns_root_initialize() 163 				new_node->value = obj_desc->method.param_count;  in acpi_ns_root_initialize() 190 				obj_desc->mutex.node = new_node;  in acpi_ns_root_initialize() 234 			status = acpi_ns_attach_object(new_node, obj_desc,  in acpi_ns_root_initialize()
  | 
| D | dswload2.c | 379 	struct acpi_namespace_node *new_node;  in acpi_ds_load2_end_op()  local 705 				   &(new_node));  in acpi_ds_load2_end_op() 712 			if (new_node->type != ACPI_TYPE_METHOD) {  in acpi_ds_load2_end_op() 720 			op->common.node = new_node;  in acpi_ds_load2_end_op()
  | 
| /linux-4.1.27/fs/ext4/ | 
| D | block_validity.c | 62 	struct rb_node *parent = NULL, *new_node = NULL;  in add_system_zone()  local 76 			new_node = *n;  in add_system_zone() 77 			new_entry = rb_entry(new_node, struct ext4_system_zone,  in add_system_zone() 90 		new_node = &new_entry->node;  in add_system_zone() 92 		rb_link_node(new_node, parent, n);  in add_system_zone() 93 		rb_insert_color(new_node, &sbi->system_blks);  in add_system_zone() 97 	node = rb_prev(new_node);  in add_system_zone() 109 	node = rb_next(new_node);  in add_system_zone()
  | 
| D | mballoc.c | 4563 	struct rb_node *parent = NULL, *new_node;  in ext4_mb_free_metadata()  local 4569 	new_node = &new_entry->efd_node;  in ext4_mb_free_metadata() 4597 	rb_link_node(new_node, parent, n);  in ext4_mb_free_metadata() 4598 	rb_insert_color(new_node, &db->bb_free_root);  in ext4_mb_free_metadata() 4601 	node = rb_prev(new_node);  in ext4_mb_free_metadata() 4613 	node = rb_next(new_node);  in ext4_mb_free_metadata()
  | 
| /linux-4.1.27/drivers/media/pci/cx23885/ | 
| D | altera-ci.c | 229 	struct fpga_inode *new_node = fpga_first_inode;  in append_internal()  local 231 	if (new_node == NULL) {  in append_internal() 232 		new_node = kmalloc(sizeof(struct fpga_inode), GFP_KERNEL);  in append_internal() 233 		fpga_first_inode = new_node;  in append_internal() 235 		while (new_node->next_inode != NULL)  in append_internal() 236 			new_node = new_node->next_inode;  in append_internal() 238 		new_node->next_inode =  in append_internal() 240 		if (new_node->next_inode != NULL)  in append_internal() 241 			new_node = new_node->next_inode;  in append_internal() 243 			new_node = NULL;  in append_internal() [all …] 
 | 
| /linux-4.1.27/net/mac80211/ | 
| D | mesh_pathtbl.c | 533 	struct mpath_node *node, *new_node;  in mesh_path_add()  local 569 	new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);  in mesh_path_add() 570 	if (!new_node)  in mesh_path_add() 579 	new_node->mpath = new_mpath;  in mesh_path_add() 586 	hlist_add_head_rcu(&new_node->list, bucket);  in mesh_path_add() 667 	struct mpath_node *node, *new_node;  in mpp_path_add()  local 685 	new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);  in mpp_path_add() 686 	if (!new_node)  in mpp_path_add() 695 	new_node->mpath = new_mpath;  in mpp_path_add() 715 	hlist_add_head_rcu(&new_node->list, bucket);  in mpp_path_add() [all …] 
 | 
| /linux-4.1.27/scripts/dtc/ | 
| D | livetree.c | 137 struct node *merge_nodes(struct node *old_node, struct node *new_node)  in merge_nodes()  argument 146 	for_each_label_withdel(new_node->labels, l)  in merge_nodes() 151 	while (new_node->proplist) {  in merge_nodes() 153 		new_prop = new_node->proplist;  in merge_nodes() 154 		new_node->proplist = new_prop->next;  in merge_nodes() 185 	while (new_node->children) {  in merge_nodes() 187 		new_child = new_node->children;  in merge_nodes() 188 		new_node->children = new_child->next_sibling;  in merge_nodes() 214 	free(new_node);  in merge_nodes()
  | 
| D | dtc.h | 196 struct node *merge_nodes(struct node *old_node, struct node *new_node);
  | 
| /linux-4.1.27/drivers/media/dvb-frontends/ | 
| D | stv0900_core.c | 99 	struct stv0900_inode *new_node = stv0900_first_inode;  in append_internal()  local 101 	if (new_node == NULL) {  in append_internal() 102 		new_node = kmalloc(sizeof(struct stv0900_inode), GFP_KERNEL);  in append_internal() 103 		stv0900_first_inode = new_node;  in append_internal() 105 		while (new_node->next_inode != NULL)  in append_internal() 106 			new_node = new_node->next_inode;  in append_internal() 108 		new_node->next_inode = kmalloc(sizeof(struct stv0900_inode),  in append_internal() 110 		if (new_node->next_inode != NULL)  in append_internal() 111 			new_node = new_node->next_inode;  in append_internal() 113 			new_node = NULL;  in append_internal() [all …] 
 | 
| /linux-4.1.27/fs/dlm/ | 
| D | lowcomms.c | 388 	struct dlm_node_addr *new_node, *na;  in dlm_lowcomms_addr()  local 390 	new_node = kzalloc(sizeof(struct dlm_node_addr), GFP_NOFS);  in dlm_lowcomms_addr() 391 	if (!new_node)  in dlm_lowcomms_addr() 396 		kfree(new_node);  in dlm_lowcomms_addr() 405 		new_node->nodeid = nodeid;  in dlm_lowcomms_addr() 406 		new_node->addr[0] = new_addr;  in dlm_lowcomms_addr() 407 		new_node->addr_count = 1;  in dlm_lowcomms_addr() 408 		list_add(&new_node->list, &dlm_node_addrs);  in dlm_lowcomms_addr() 416 		kfree(new_node);  in dlm_lowcomms_addr() 422 	kfree(new_node);  in dlm_lowcomms_addr()
  | 
| /linux-4.1.27/kernel/gcov/ | 
| D | fs.c | 431 static struct gcov_node *new_node(struct gcov_node *parent,  in new_node()  function 598 			node = new_node(parent, NULL, curr);  in add_node() 605 	node = new_node(parent, info, curr);  in add_node()
  | 
| /linux-4.1.27/fs/btrfs/ | 
| D | relocation.c | 1194 	struct backref_node *new_node;  local 1224 	new_node = alloc_backref_node(cache); 1225 	if (!new_node) 1228 	new_node->bytenr = dest->node->start; 1229 	new_node->level = node->level; 1230 	new_node->lowest = node->lowest; 1231 	new_node->checked = 1; 1232 	new_node->root = dest; 1240 			new_edge->node[UPPER] = new_node; 1243 				      &new_node->lower); [all …] 
 | 
| /linux-4.1.27/mm/ | 
| D | memory_hotplug.c | 1222 	bool new_node;  in add_memory()  local 1242 	new_node = !node_online(nid);  in add_memory() 1243 	if (new_node) {  in add_memory() 1259 	if (new_node) {  in add_memory()
  | 
| /linux-4.1.27/drivers/gpu/drm/nouveau/ | 
| D | nouveau_bo.c | 1040 	struct nvkm_mem *new_node = mem->mm_node;  in nouveau_bo_move_prep()  local 1049 	ret = nvkm_vm_get(drm->client.vm, size, new_node->page_shift,  in nouveau_bo_move_prep() 1057 	nvkm_vm_map(&old_node->vma[1], new_node);  in nouveau_bo_move_prep()
  |