Searched refs:b_node (Results 1 – 5 of 5) sorted by relevance
7 struct b_node { struct9 struct b_node *next; argument14 struct b_node *listTail; argument15 struct b_node *listHead;17 struct b_node *listLast;18 int (*listCompare)(struct b_node *new, struct b_node *node);
6 struct b_node { struct7 struct b_node *next; argument31 struct b_node *listTail;32 struct b_node *listHead;
62 static struct b_node *67 struct b_node *b; in add_node()84 b = (struct b_node *)&memBase->nodes[size * index]; in add_node()93 static struct b_node *94 insert_node(struct b_list *list, struct b_node *new) in insert_node()97 struct b_node *b, *prev; in insert_node()123 new->next = (struct b_node *) NULL; in insert_node()135 static struct b_node *150 return insert_node(list, (struct b_node *)new); in insert_inode()153 static struct b_node *[all …]
546 struct b_node nodes[NODE_CHUNK];560 static struct b_node *565 struct b_node *b; in add_node()599 static struct b_node *602 struct b_node *new; in insert_node()624 static int compare_inodes(struct b_node *new, struct b_node *old) in compare_inodes()645 static int compare_dirents(struct b_node *new, struct b_node *old) in compare_dirents()726 struct b_node *b; in jffs2_1pass_read_inode()870 struct b_node *b; in jffs2_1pass_find_inode()1000 struct b_node *b; in jffs2_1pass_list_inodes()[all …]
16 struct b_node *p, *q, *e, **tail; in sort_list()