Home
last modified time | relevance | path

Searched refs:ext2fs_rb_is_black (Results 1 – 2 of 2) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
Drbtree.c141 while ((!node || ext2fs_rb_is_black(node)) && node != root->rb_node) in __rb_erase_color()
153 if ((!other->rb_left || ext2fs_rb_is_black(other->rb_left)) && in __rb_erase_color()
154 (!other->rb_right || ext2fs_rb_is_black(other->rb_right))) in __rb_erase_color()
162 if (!other->rb_right || ext2fs_rb_is_black(other->rb_right)) in __rb_erase_color()
187 if ((!other->rb_left || ext2fs_rb_is_black(other->rb_left)) && in __rb_erase_color()
188 (!other->rb_right || ext2fs_rb_is_black(other->rb_right))) in __rb_erase_color()
196 if (!other->rb_left || ext2fs_rb_is_black(other->rb_left)) in __rb_erase_color()
Drbtree.h130 #define ext2fs_rb_is_black(r) ext2fs_rb_color(r) macro