Home | History | Annotate | Download | only in e2fsck

Lines Matching defs:new

79  * child of C.   The left subtree of C is inherited as the new right subtree
257 dict_t *new = malloc(sizeof *new);
259 if (new) {
260 new->compare = comp;
261 new->allocnode = dnode_alloc;
262 new->freenode = dnode_free;
263 new->context = NULL;
264 new->nodecount = 0;
265 new->maxcount = maxcount;
266 new->nilnode.left = &new->nilnode;
267 new->nilnode.right = &new->nilnode;
268 new->nilnode.parent = &new->nilnode;
269 new->nilnode.color = dnode_black;
270 new->dupes = 0;
272 return new;
984 dnode_t *new = malloc(sizeof *new);
985 if (new) {
986 new->data = data;
987 new->parent = NULL;
988 new->left = NULL;
989 new->right = NULL;
991 return new;
1262 char *new = malloc(sz);
1263 if (new)
1264 memcpy(new, str, sz);
1265 return new;
1296 "a <key> <val> add new entry\n";