HomeSort by relevance Sort by last modified time
    Searched refs:oldtable (Results 1 - 7 of 7) sorted by null

  /external/libxml2/
hash.c 233 struct _xmlHashEntry *oldtable; local
246 oldtable = table->table;
247 if (oldtable == NULL)
252 table->table = oldtable;
265 if (oldtable[i].valid == 0)
267 key = xmlHashComputeKey(table, oldtable[i].name, oldtable[i].name2,
268 oldtable[i].name3);
269 memcpy(&(table->table[key]), &(oldtable[i]), sizeof(xmlHashEntry));
274 iter = oldtable[i].next
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
dictobject.c 601 PyDictEntry *oldtable, *newtable, *ep; local
619 oldtable = mp->ma_table;
620 assert(oldtable != NULL);
621 is_oldtable_malloced = oldtable != mp->ma_smalltable;
626 if (newtable == oldtable) {
638 memcpy(small_copy, oldtable, sizeof(small_copy));
639 oldtable = small_copy;
651 assert(newtable != oldtable);
661 for (ep = oldtable; i > 0; ep++) {
676 PyMem_DEL(oldtable);
    [all...]
setobject.c 277 setentry *oldtable, *newtable, *entry; local
295 oldtable = so->table;
296 assert(oldtable != NULL);
297 is_oldtable_malloced = oldtable != so->smalltable;
302 if (newtable == oldtable) {
314 memcpy(small_copy, oldtable, sizeof(small_copy));
315 oldtable = small_copy;
327 assert(newtable != oldtable);
337 for (entry = oldtable; i > 0; entry++) {
354 PyMem_DEL(oldtable);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
dictobject.c 590 PyDictEntry *oldtable, *newtable, *ep; local
608 oldtable = mp->ma_table;
609 assert(oldtable != NULL);
610 is_oldtable_malloced = oldtable != mp->ma_smalltable;
615 if (newtable == oldtable) {
627 memcpy(small_copy, oldtable, sizeof(small_copy));
628 oldtable = small_copy;
640 assert(newtable != oldtable);
650 for (ep = oldtable; i > 0; ep++) {
665 PyMem_DEL(oldtable);
    [all...]
setobject.c 278 setentry *oldtable, *newtable, *entry; local
296 oldtable = so->table;
297 assert(oldtable != NULL);
298 is_oldtable_malloced = oldtable != so->smalltable;
303 if (newtable == oldtable) {
315 memcpy(small_copy, oldtable, sizeof(small_copy));
316 oldtable = small_copy;
328 assert(newtable != oldtable);
338 for (entry = oldtable; i > 0; entry++) {
355 PyMem_DEL(oldtable);
    [all...]
  /external/python/cpython2/Objects/
dictobject.c 601 PyDictEntry *oldtable, *newtable, *ep; local
619 oldtable = mp->ma_table;
620 assert(oldtable != NULL);
621 is_oldtable_malloced = oldtable != mp->ma_smalltable;
626 if (newtable == oldtable) {
638 memcpy(small_copy, oldtable, sizeof(small_copy));
639 oldtable = small_copy;
651 assert(newtable != oldtable);
661 for (ep = oldtable; i > 0; ep++) {
676 PyMem_DEL(oldtable);
    [all...]
setobject.c 274 setentry *oldtable, *newtable, *entry; local
292 oldtable = so->table;
293 assert(oldtable != NULL);
294 is_oldtable_malloced = oldtable != so->smalltable;
299 if (newtable == oldtable) {
311 memcpy(small_copy, oldtable, sizeof(small_copy));
312 oldtable = small_copy;
324 assert(newtable != oldtable);
334 for (entry = oldtable; i > 0; entry++) {
351 PyMem_DEL(oldtable);
    [all...]

Completed in 209 milliseconds