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

1 2

  /external/chromium_org/third_party/mesa/src/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,
  /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,
  /external/chromium_org/third_party/skia/third_party/harfbuzz/src/
harfbuzz-impl.h 88 #define REALLOC(_ptr,_newsz) \
104 REALLOC(_ptr,(_newcnt)*sizeof(_type))
  /external/srec/portable/include/
pmemory.h 67 #define REALLOC(p, n) realloc(p, n)
87 #define realloc #error macro
125 * Portable realloc()
127 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize, L(__FILE__), __LINE__))
130 * Portable realloc()
132 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize))
204 * Reallocates data. Similar to realloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
  /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/srec/shared/src/
IntArrayListImpl.c 81 int* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(int));
115 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(int));
LStringImpl.c 62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2)));
Int8ArrayListImpl.c 82 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/
ArrayListImpl.c 82 void** temp = REALLOC(impl->contents, newCapacity * sizeof(void*));
129 if ((temp = REALLOC(impl->contents, newCapacity * sizeof(void*))) == NULL)
  /ndk/sources/host-tools/sed-4.2.1/sed/
regexp.c 193 regs->start = REALLOC (regs->start, need_regs, regoff_t);
194 regs->end = REALLOC (regs->end, need_regs, regoff_t);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_validate.c 94 new_entries = (struct pb_validate_entry *)REALLOC(vl->entries,
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_validate.c 94 new_entries = (struct pb_validate_entry *)REALLOC(vl->entries,
  /ndk/sources/host-tools/sed-4.2.1/
basicdefs.h 90 #define REALLOC(x,n,t) (VCAST(t *)ck_realloc(VCAST(VOID *)(x),(n)*sizeof(t)))
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 84 10090 REALLOC
189 __builtin_delete, calloc, realloc, memalign, and friends.
631 /*---------------------- realloc ----------------------*/
660 #define REALLOC(soname, fnname) \
670 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \
688 REALLOC(VG_Z_LIBC_SONAME, realloc);
689 REALLOC(SO_SYN_MALLOC, realloc);
692 REALLOC(VG_Z_LIBC_SONAME, realloc)
    [all...]
  /external/chromium_org/third_party/mesa/src/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);
  /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);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi.c 67 new_buf = REALLOC(emit->buf, emit->size, newsize);
  /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)))

Completed in 635 milliseconds

1 2