HomeSort by relevance Sort by last modified time
    Searched full:realloc (Results 226 - 250 of 1311) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/examples/
twopass_encoder.txt 57 stats.buf = realloc(stats.buf, stats.sz
  /external/libvpx/vpx_mem/
vpx_mem.c 73 # define VPX_REALLOC_L realloc
169 The realloc() function changes the size of the object pointed to by
172 of the new and old sizes. If ptr is null, realloc() behaves like
336 * the memory that does get realloc'd may change
  /external/libxml2/
triop.h 74 # define TRIO_REALLOC(x,n) realloc((x),(n))
  /external/openssl/crypto/lhash/
lhash.c 79 * 1.7 eay - Removed the fputs() for realloc failures - the code
85 * 1.5 eay - Fixed a misuse of realloc in expand 02/03/1992
350 /* fputs("realloc error in lhash",stderr); */
378 /* fputs("realloc error in lhash",stderr); */
  /external/qemu/android/utils/
misc.c 102 t->buffer = realloc( t->buffer, size );
system.c 66 block2 = realloc(block, size);
  /external/skia/include/core/
SkTypes.h 66 /** Same as standard realloc(), but this one never returns null on failure. It will throw
423 * a zero-byte allocation. Must call realloc(size) to return an allocated
437 this->realloc(size);
464 void* realloc(size_t size) { function in class:SkAutoSMalloc
  /external/srec/shared/src/
LStringImpl.c 62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2)));