HomeSort by relevance Sort by last modified time
    Searched refs:REALLOC (Results 1 - 19 of 19) sorted by null

  /external/mesa3d/src/gallium/auxiliary/util/
u_memory.h 54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size)
u_dynarray.h 72 buf->data = REALLOC(buf->data, buf->capacity, newcap);
92 buf->data = REALLOC(buf->data, buf->capacity, buf->size);
u_handle_table.c 114 new_objects = (void **)REALLOC((void *)ht->objects,
u_bitmask.c 114 new_words = (util_bitmask_word *)REALLOC((void *)bm->words,
  /development/tools/yuv420sp2rgb/
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size) {
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_validate.c 94 new_entries = (struct pb_validate_entry *)REALLOC(vl->entries,
  /external/valgrind/coregrind/m_replacemalloc/
vg_replace_malloc.c 84 10090 REALLOC
198 __builtin_delete, calloc, realloc, memalign, and friends.
638 /*---------------------- realloc ----------------------*/
667 #define REALLOC(soname, fnname) \
677 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \
695 REALLOC(VG_Z_LIBC_SONAME, realloc);
696 REALLOC(SO_SYN_MALLOC, realloc);
699 REALLOC(VG_Z_LIBC_SONAME, realloc)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 295 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);
nv50_ir_util.cpp 251 data = (uint32_t *)REALLOC(data, 4 * p, 4 * n);
nv50_ir_target.cpp 371 REALLOC(relocInfo, n ? size : 0,
nv50_ir_from_tgsi.cpp 902 info->immd.buf = (uint32_t *)REALLOC(info->immd.buf, base * 4,
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi.c 67 new_buf = REALLOC(emit->buf, emit->size, newsize);
  /ndk/sources/host-tools/make-3.81/
hash.c 24 #define REALLOC(o, t, n) ((t *) xrealloc ((o), sizeof (t) * (n)))
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.c 62 instructions = REALLOC(bld_base->instructions, bld_base->max_instructions
  /external/expat/lib/
xmlparse.c 563 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s)))
749 mtemp->realloc_fcn = realloc;
    [all...]