Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dsetobject.c274 setentry *oldtable, *newtable, *entry; in set_table_resize() local
298 newtable = so->smalltable; in set_table_resize()
299 if (newtable == oldtable) { in set_table_resize()
316 newtable = PyMem_NEW(setentry, newsize); in set_table_resize()
317 if (newtable == NULL) { in set_table_resize()
324 assert(newtable != oldtable); in set_table_resize()
325 so->table = newtable; in set_table_resize()
327 memset(newtable, 0, sizeof(setentry) * newsize); in set_table_resize()
Ddictobject.c601 PyDictEntry *oldtable, *newtable, *ep; in dictresize() local
625 newtable = mp->ma_smalltable; in dictresize()
626 if (newtable == oldtable) { in dictresize()
643 newtable = PyMem_NEW(PyDictEntry, newsize); in dictresize()
644 if (newtable == NULL) { in dictresize()
651 assert(newtable != oldtable); in dictresize()
652 mp->ma_table = newtable; in dictresize()
654 memset(newtable, 0, sizeof(PyDictEntry) * newsize); in dictresize()
/external/syslinux/gpxe/src/drivers/net/
Dtulip.c455 u16 newtable[32]; /* Max length below. */ member
772 memcpy(ee_data + 26, eeprom_fixups[i].newtable, in parse_eeprom()
773 sizeof(eeprom_fixups[i].newtable)); in parse_eeprom()