Home
last modified time | relevance | path

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

/external/autotest/scheduler/
Dgc_stats.py36 new_objects = []
50 new_objects.append(obj)
51 whats_new_big_str = pprint.pformat(new_objects, indent=1)
57 del new_objects
/external/mesa3d/src/gallium/auxiliary/util/
Du_handle_table.c104 void **new_objects; in handle_table_resize() local
114 new_objects = (void **)REALLOC((void *)ht->objects, in handle_table_resize()
117 if (!new_objects) in handle_table_resize()
120 memset(new_objects + ht->size, 0, (new_size - ht->size)*sizeof(void *)); in handle_table_resize()
123 ht->objects = new_objects; in handle_table_resize()
/external/mesa3d/src/intel/vulkan/
Danv_batch_chain.c972 struct drm_i915_gem_exec_object2 *new_objects = in anv_execbuf_add_bo() local
973 vk_alloc(alloc, new_len * sizeof(*new_objects), in anv_execbuf_add_bo()
975 if (new_objects == NULL) in anv_execbuf_add_bo()
982 vk_free(alloc, new_objects); in anv_execbuf_add_bo()
987 memcpy(new_objects, exec->objects, in anv_execbuf_add_bo()
988 exec->bo_count * sizeof(*new_objects)); in anv_execbuf_add_bo()
996 exec->objects = new_objects; in anv_execbuf_add_bo()
/external/python/cpython2/Lib/test/
Dtest_descr.py1150 new_objects = len(gc.get_objects())
1151 self.assertEqual(orig_objects, new_objects)