Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/graph/
Dsplit-helpers.hh37 hb_vector_t<unsigned> new_objects; in actuate_subtable_split() local
39 return new_objects; in actuate_subtable_split()
51 new_objects.reset (); in actuate_subtable_split()
52 new_objects.allocated = -1; // mark error in actuate_subtable_split()
53 return new_objects; in actuate_subtable_split()
55 new_objects.push (id); in actuate_subtable_split()
60 new_objects.reset (); in actuate_subtable_split()
61 new_objects.allocated = -1; // mark error in actuate_subtable_split()
64 return new_objects; in actuate_subtable_split()
/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/i915/
Danv_batch_chain.c109 struct drm_i915_gem_exec_object2 *new_objects = in anv_execbuf_add_bo() local
111 new_len * sizeof(*new_objects), 8, exec->alloc_scope); in anv_execbuf_add_bo()
112 if (new_objects == NULL) in anv_execbuf_add_bo()
115 exec->objects = new_objects; in anv_execbuf_add_bo()
/external/mesa3d/src/intel/vulkan_hasvk/
Danv_batch_chain.c1271 struct drm_i915_gem_exec_object2 *new_objects = in anv_execbuf_add_bo() local
1272 vk_alloc(exec->alloc, new_len * sizeof(*new_objects), 8, exec->alloc_scope); in anv_execbuf_add_bo()
1273 if (new_objects == NULL) in anv_execbuf_add_bo()
1279 vk_free(exec->alloc, new_objects); in anv_execbuf_add_bo()
1284 memcpy(new_objects, exec->objects, in anv_execbuf_add_bo()
1285 exec->bo_count * sizeof(*new_objects)); in anv_execbuf_add_bo()
1293 exec->objects = new_objects; in anv_execbuf_add_bo()
/external/python/cpython3/Lib/test/
Dtest_descr.py1293 new_objects = len(gc.get_objects())
1294 self.assertEqual(orig_objects, new_objects)