Searched refs:new_objects (Results 1 – 3 of 3) sorted by relevance
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_handle_table.c | 104 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()
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_batch_chain.c | 1283 struct drm_i915_gem_exec_object2 *new_objects = in anv_execbuf_add_bo() local 1284 vk_alloc(exec->alloc, new_len * sizeof(*new_objects), 8, exec->alloc_scope); in anv_execbuf_add_bo() 1285 if (new_objects == NULL) in anv_execbuf_add_bo() 1291 vk_free(exec->alloc, new_objects); in anv_execbuf_add_bo() 1296 memcpy(new_objects, exec->objects, in anv_execbuf_add_bo() 1297 exec->bo_count * sizeof(*new_objects)); in anv_execbuf_add_bo() 1305 exec->objects = new_objects; in anv_execbuf_add_bo()
|
/third_party/python/Lib/test/ |
D | test_descr.py | 1285 new_objects = len(gc.get_objects()) 1286 self.assertEqual(orig_objects, new_objects)
|