Searched refs:REALLOC (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_memory.h54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size) macro
H A Du_dynarray.h72 buf->data = REALLOC(buf->data, buf->capacity, newcap);
92 buf->data = REALLOC(buf->data, buf->capacity, buf->size);
H A Du_handle_table.c114 new_objects = (void **)REALLOC((void *)ht->objects,
H A Du_bitmask.c114 new_words = (util_bitmask_word *)REALLOC((void *)bm->words,
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_memory.h54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size) macro
H A Du_dynarray.h72 buf->data = REALLOC(buf->data, buf->capacity, newcap);
92 buf->data = REALLOC(buf->data, buf->capacity, buf->size);
H A Du_handle_table.c114 new_objects = (void **)REALLOC((void *)ht->objects,
H A Du_bitmask.c114 new_words = (util_bitmask_word *)REALLOC((void *)bm->words,
/external/srec/portable/include/
H A Dpmemory.h67 #define REALLOC(p, n) realloc(p, n) macro
127 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize, L(__FILE__), __LINE__)) macro
132 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize)) macro
/external/srec/shared/src/
H A DIntArrayListImpl.c81 int* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(int));
115 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(int));
H A DLStringImpl.c62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2)));
H A DInt8ArrayListImpl.c82 asr_int8_t* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(asr_int8_t));
116 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(asr_int8_t));
/external/srec/portable/src/
H A DArrayListImpl.c82 void** temp = REALLOC(impl->contents, newCapacity * sizeof(void*));
129 if ((temp = REALLOC(impl->contents, newCapacity * sizeof(void*))) == NULL)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
H A Dpb_validate.c94 new_entries = (struct pb_validate_entry *)REALLOC(vl->entries,
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_validate.c94 new_entries = (struct pb_validate_entry *)REALLOC(vl->entries,
/external/valgrind/main/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c84 10090 REALLOC
660 #define REALLOC(soname, fnname) \ macro
688 REALLOC(VG_Z_LIBC_SONAME, realloc);
689 REALLOC(SO_SYN_MALLOC, realloc);
692 REALLOC(VG_Z_LIBC_SONAME, realloc);
693 REALLOC(SO_SYN_MALLOC, realloc);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h295 array = (Item *)REALLOC(array, sizeOld, sizeNew);
340 data = (Item *)REALLOC(data, oldSize, size * sizeof(Item));
589 uint8_t **alloc = (uint8_t **)REALLOC(allocArray, size, size + incr);
H A Dnv50_ir_util.cpp251 data = (uint32_t *)REALLOC(data, 4 * p, 4 * n);
H A Dnv50_ir_target.cpp371 REALLOC(relocInfo, n ? size : 0,
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h295 array = (Item *)REALLOC(array, sizeOld, sizeNew);
340 data = (Item *)REALLOC(data, oldSize, size * sizeof(Item));
589 uint8_t **alloc = (uint8_t **)REALLOC(allocArray, size, size + incr);
H A Dnv50_ir_util.cpp251 data = (uint32_t *)REALLOC(data, 4 * p, 4 * n);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi.c67 new_buf = REALLOC(emit->buf, emit->size, newsize);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi.c67 new_buf = REALLOC(emit->buf, emit->size, newsize);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.c62 instructions = REALLOC(bld_base->instructions, bld_base->max_instructions
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.c62 instructions = REALLOC(bld_base->instructions, bld_base->max_instructions

Completed in 2155 milliseconds

12