/external/dtc/tests/ |
D | sw_tree1.c | 37 REALLOC, enumerator 61 case REALLOC: in realloc_fdt() 99 alloc_mode = REALLOC; in main() 102 alloc_mode = REALLOC; in main()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_dynarray.h | 72 buf->data = REALLOC(buf->data, buf->capacity, newcap); in util_dynarray_resize() 92 buf->data = REALLOC(buf->data, buf->capacity, buf->size); in util_dynarray_trim()
|
D | u_memory.h | 54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size) macro
|
D | u_handle_table.c | 114 new_objects = (void **)REALLOC((void *)ht->objects, in handle_table_resize()
|
D | u_bitmask.c | 114 new_words = (util_bitmask_word *)REALLOC((void *)bm->words, in util_bitmask_resize()
|
D | u_prim_restart.c | 153 info->ranges = REALLOC(info->ranges, in add_range()
|
/external/valgrind/coregrind/m_replacemalloc/ |
D | vg_replace_malloc.c | 756 #define REALLOC(soname, fnname) \ macro 784 REALLOC(VG_Z_LIBC_SONAME, realloc); 785 REALLOC(SO_SYN_MALLOC, realloc); 788 REALLOC(VG_Z_LIBC_SONAME, realloc); 789 REALLOC(SO_SYN_MALLOC, realloc); 794 REALLOC(VG_Z_LIBC_SONAME, realloc); 795 REALLOC(VG_Z_LIBUMEM_SO_1, realloc); 796 REALLOC(SO_SYN_MALLOC, realloc);
|
/external/mesa3d/src/gallium/state_trackers/nine/ |
D | stateblock9.c | 317 dst->ff.light = REALLOC(dst->ff.light, in nine_state_copy_common() 335 src->ff.light = REALLOC(src->ff.light, in nine_state_copy_common() 477 dst->ff.light = REALLOC(dst->ff.light, in nine_state_copy_common_all() 492 dst->ff.transform = REALLOC(dst->ff.transform, in nine_state_copy_common_all()
|
D | nine_helpers.c | 37 pool->slabs = REALLOC(pool->slabs, in nine_range_pool_more()
|
D | buffer9.c | 285 REALLOC(This->maps, sizeof(struct NineTransfer)*This->maxmaps, in NineBuffer9_Lock()
|
/external/mesa3d/src/gallium/drivers/ilo/core/ |
D | ilo_builder.c | 269 new_ptr = REALLOC(writer->ptr, writer->size, new_size); in ilo_builder_writer_grow() 310 items = REALLOC(writer->items, in ilo_builder_writer_record()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_util.h | 299 array = (Item *)REALLOC(array, sizeOld, sizeNew); in resize() 344 data = (Item *)REALLOC(data, oldSize, size * sizeof(Item)); in resize() 594 uint8_t **alloc = (uint8_t **)REALLOC(allocArray, size, size + incr); in enlargeAllocationsArray()
|
D | nv50_ir_target.cpp | 424 REALLOC(relocInfo, n ? size : 0, in addReloc() 450 REALLOC(fixupInfo, n ? size : 0, in addInterp()
|
D | nv50_ir_util.cpp | 251 data = (uint32_t *)REALLOC(data, 4 * p, 4 * n); in resize()
|
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
D | pb_validate.c | 94 new_entries = (struct pb_validate_entry *)REALLOC(vl->entries, in pb_validate_add_buffer()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi.c | 61 new_buf = REALLOC(emit->buf, emit->size, newsize); in svga_shader_expand()
|
/external/python/cpython2/Modules/expat/ |
D | xmlparse.c | 563 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s))) macro 1590 : (char *)REALLOC(buffer, len * 2)); in XML_Parse() 1918 return REALLOC(ptr, size); in XML_MemRealloc() 2088 char *temp = (char *)REALLOC(tag->buf, bufSize); in storeRawNames() 2442 char *temp = (char *)REALLOC(tag->buf, bufSize); in doContent() 2753 temp = (ATTRIBUTE *)REALLOC((void *)atts, attsSize * sizeof(ATTRIBUTE)); in storeAtts() 2758 temp2 = (XML_AttrInfo *)REALLOC((void *)attInfo, attsSize * sizeof(XML_AttrInfo)); in storeAtts() 2905 temp = (NS_ATT *)REALLOC(nsAtts, nsAttsSize * sizeof(NS_ATT)); in storeAtts() 3138 XML_Char *temp = (XML_Char *)REALLOC(b->uri, in addBinding() 4441 char *temp = (char *)REALLOC(groupConnector, groupSize *= 2); in doProlog() [all …]
|
/external/python/cpython3/Modules/expat/ |
D | xmlparse.c | 563 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s))) macro 1590 : (char *)REALLOC(buffer, len * 2)); in XML_Parse() 1918 return REALLOC(ptr, size); in XML_MemRealloc() 2088 char *temp = (char *)REALLOC(tag->buf, bufSize); in storeRawNames() 2442 char *temp = (char *)REALLOC(tag->buf, bufSize); in doContent() 2753 temp = (ATTRIBUTE *)REALLOC((void *)atts, attsSize * sizeof(ATTRIBUTE)); in storeAtts() 2758 temp2 = (XML_AttrInfo *)REALLOC((void *)attInfo, attsSize * sizeof(XML_AttrInfo)); in storeAtts() 2905 temp = (NS_ATT *)REALLOC(nsAtts, nsAttsSize * sizeof(NS_ATT)); in storeAtts() 3138 XML_Char *temp = (XML_Char *)REALLOC(b->uri, in addBinding() 4441 char *temp = (char *)REALLOC(groupConnector, groupSize *= 2); in doProlog() [all …]
|
/external/mesa3d/src/gallium/state_trackers/va/ |
D | buffer.c | 94 buf->data = REALLOC(buf->data, buf->size * buf->num_elements, in vlVaBufferSetNumElements()
|
/external/mesa3d/src/gallium/winsys/radeon/drm/ |
D | radeon_drm_cs.c | 314 REALLOC(csc->slab_buffers, in radeon_lookup_or_add_slab_buffer() 524 struct radeon_bo **new_fences = REALLOC(bo->u.slab.fences, in radeon_bo_slab_fence()
|
/external/mesa3d/src/gallium/winsys/amdgpu/drm/ |
D | amdgpu_cs.c | 397 new_buffers = REALLOC(cs->slab_buffers, in amdgpu_lookup_or_add_slab_buffer() 813 new_prev = REALLOC(rcs->prev, in amdgpu_cs_check_space() 958 REALLOC(bo->fences, in amdgpu_add_fence()
|
/external/mesa3d/src/gallium/auxiliary/hud/ |
D | hud_driver_query.c | 161 = REALLOC(bq->query_types, in batch_query_add()
|
/external/expat/lib/ |
D | xmlparse.c | 648 #define REALLOC(parser, p, s) (parser->m_mem.realloc_fcn((p),(s))) macro 1919 temp = (char *)REALLOC(parser, parser->m_buffer, bytesToAllocate); in XML_Parse() 2282 return REALLOC(parser, ptr, size); in XML_MemRealloc() 2500 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); in storeRawNames() 2854 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); in doContent() 3192 …temp = (ATTRIBUTE *)REALLOC(parser, (void *)parser->m_atts, parser->m_attsSize * sizeof(ATTRIBUTE)… in storeAtts() 3199 …temp2 = (XML_AttrInfo *)REALLOC(parser, (void *)parser->m_attInfo, parser->m_attsSize * sizeof(XML… in storeAtts() 3349 temp = (NS_ATT *)REALLOC(parser, parser->m_nsAtts, nsAttsSize * sizeof(NS_ATT)); in storeAtts() 3610 XML_Char *temp = (XML_Char *)REALLOC(parser, b->uri, in addBinding() 4968 char *temp = (char *)REALLOC(parser, parser->m_groupConnector, parser->m_groupSize *= 2); in doProlog() [all …]
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_tgsi.c | 62 instructions = REALLOC(bld_base->instructions, bld_base->max_instructions in lp_bld_tgsi_add_instruction()
|
/external/valgrind/drd/tests/ |
D | tsan_unittest.cpp | 5224 int *REALLOC; variable 5242 (*REALLOC)++; in Worker() 5258 REALLOC = (int*)realloc(NULL, sizeof(int)); in Run() 5280 FAST_MODE_INIT(REALLOC); in Run() 5281 ANNOTATE_EXPECT_RACE(REALLOC, "real race on a realloc-ed object"); in Run() 5308 free(REALLOC); in Run()
|