Home
last modified time | relevance | path

Searched refs:b_node (Results 1 – 5 of 5) sorted by relevance

/rk3399_rockchip-uboot/fs/jffs2/
H A Djffs2_private.h7 struct b_node { struct
9 struct b_node *next; argument
14 struct b_node *listTail; argument
15 struct b_node *listHead;
17 struct b_node *listLast;
18 int (*listCompare)(struct b_node *new, struct b_node *node);
H A Djffs2_nand_private.h6 struct b_node { struct
7 struct b_node *next; argument
31 struct b_node *listTail;
32 struct b_node *listHead;
H A Djffs2_nand_1pass.c62 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 …]
H A Djffs2_1pass.c546 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 …]
H A Dmergesort.c16 struct b_node *p, *q, *e, **tail; in sort_list()