Home
last modified time | relevance | path

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

/freebsd/lib/libc/stdio/
H A Dprintf-pos.c639 enum typeid *newtable; in __grow_type_table() local
650 if ((newtable = malloc(newsize * sizeof(enum typeid))) == NULL) in __grow_type_table()
652 bcopy(oldtable, newtable, oldsize * sizeof(enum typeid)); in __grow_type_table()
654 newtable = reallocarray(oldtable, newsize, sizeof(enum typeid)); in __grow_type_table()
655 if (newtable == NULL) in __grow_type_table()
659 newtable[n] = T_UNUSED; in __grow_type_table()
661 types->table = newtable; in __grow_type_table()