Home
last modified time | relevance | path

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

/freebsd/contrib/flex/src/
H A Dtables.c465 struct yytbl_data newtbl; in yytbl_data_compress() local
467 yytbl_data_init (&newtbl, tbl->td_id); in yytbl_data_compress()
468 newtbl.td_hilen = tbl->td_hilen; in yytbl_data_compress()
469 newtbl.td_lolen = tbl->td_lolen; in yytbl_data_compress()
470 newtbl.td_flags = tbl->td_flags; in yytbl_data_compress()
485 newtbl.td_data = calloc ((size_t) total_len, newsz); in yytbl_data_compress()
486 newtbl.td_flags = (flex_uint16_t) in yytbl_data_compress()
487 (TFLAGS_CLRDATA (newtbl.td_flags) | BYTES2TFLAG (newsz)); in yytbl_data_compress()
493 yytbl_data_seti (&newtbl, i, g); in yytbl_data_compress()
499 *tbl = newtbl; in yytbl_data_compress()
/freebsd/tools/bus_space/
H A Dbus.c56 void *newtbl; in rid_alloc() local
65 newtbl = realloc(ridtbl, sizeof(struct resource) * nrids); in rid_alloc()
66 if (newtbl == NULL) { in rid_alloc()
70 ridtbl = newtbl; in rid_alloc()
H A Dbusdma.c85 struct obj **newtbl, *obj; in obj_alloc() local
96 newtbl = realloc(oidtbl, sizeof(struct obj *) * (noids + 1)); in obj_alloc()
97 if (newtbl == NULL) { in obj_alloc()
101 oidtbl = newtbl; in obj_alloc()