Lines Matching defs:new
73 Alloc * new = malloc(ALLOCSIZE(sz));
75 if (!new)
77 (new->next = head->next)->prev = new;
78 (new->prev = head)->next = new;
79 return new->buf;
85 void * new = sanei_hp_alloc(sz);
87 if (!new)
89 memset(new, 0, sz);
90 return new;
96 char * new = sanei_hp_alloc(sz);
97 if (!new)
99 return memcpy(new, src, sz);
115 Alloc * new = realloc(old, ALLOCSIZE(sz));
116 if (!new)
118 if (new != old)
119 (new->prev = copy.prev)->next = (new->next = copy.next)->prev = new;
120 return new->buf;