Home
last modified time | relevance | path

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

/src/lib/libc/stdio/
H A Dprintf-pos.c631 enum typeid *newtable; in __grow_type_table() local
642 if ((newtable = malloc(newsize * sizeof(enum typeid))) == NULL) in __grow_type_table()
644 bcopy(oldtable, newtable, oldsize * sizeof(enum typeid)); in __grow_type_table()
646 newtable = reallocarray(oldtable, newsize, sizeof(enum typeid)); in __grow_type_table()
647 if (newtable == NULL) in __grow_type_table()
651 newtable[n] = T_UNUSED; in __grow_type_table()
653 types->table = newtable; in __grow_type_table()