HomeSort by relevance Sort by last modified time
    Searched refs:realloc (Results 276 - 300 of 450) sorted by null

<<1112131415161718

  /external/openssl/include/openssl/
crypto.h 337 malloc, realloc, free)
  /external/qemu/android/utils/
stralloc.c 75 s->s = realloc( s->s, new_max );
  /external/qemu/distrib/sdl-1.2.12/
android-configure.sh 355 sdl_check_funcs malloc calloc realloc free alloc
  /external/qemu/telephony/
remote_call.c 232 char* new_buff = realloc( old_buff, msg2len );
  /external/srec/portable/src/
pmalloc.c 36 #undef realloc macro
pmemfixed.c 27 #undef realloc macro
pmemory.c 36 #undef realloc macro
640 data->stackTrace = realloc(stackTrace, sizeof(LCHAR) * (LSTRLEN(stackTrace) + 1));
723 The realloc() function changes the size of the memory object pointed to by ptr to the size specified by size. The contents of the object will remain unchanged up to the lesser of the new and old sizes. If the new size of the memory object would require movement of the object, the space for the previous instantiation of the object is freed. If the new size is larger, the contents of the newly allocated portion of the object are unspecified. If size is 0 and ptr is not a null pointer, the object pointed to is freed. If the space cannot be allocated, the object remains unchanged.
724 If ptr is a null pointer, realloc() behaves like malloc() for the specified size.
726 If ptr does not match a pointer returned earlier by calloc(), malloc() or realloc() or if the space has previously been deallocated by a call to free() or realloc(), the behaviour is undefined.
728 The order and contiguity of storage allocated by successive calls to realloc() is unspecified. The pointer returned if the allocation succeeds is suitably aligned so that it may be assigned to a pointer to any type of object and then used to access such an object in the space allocated (until the space is explicitly freed or reallocated). Each such allocation will yield a pointer to an object disjoint from any other object. The pointer returned points to the start (lowest byte address) of the allocated space. If the space cannot be allocated, a null pointer is returned.
731 Upon successful completion with a size not equal to 0, realloc() returns a pointer to the (possibly moved) allocated space. If size is 0, either a null pointer or a unique pointer that can be successfully passed to free() is returned. If there is not enough available memory, realloc() returns a null pointer
810 newData = (MemoryData *) realloc(oldData, actualSize)
    [all...]
  /external/zlib/examples/
enough.c 284 vector = realloc(done[index].vec, length);
  /frameworks/base/opengl/libs/GLES2_dbg/src/
server.cpp 124 buffer = realloc(buffer, len);
  /system/core/toolbox/
schedtop.c 58 new_table = realloc(table->data, size * sizeof(*table->data));
  /bootable/recovery/applypatch/
imgdiff.c 405 *chunks = realloc(*chunks, *num_chunks * sizeof(ImageChunk));
451 curr->data = realloc(curr->data, allocated);
488 *chunks = realloc(*chunks, *num_chunks * sizeof(ImageChunk));
  /external/e2fsprogs/e2fsck/
rehash.c 140 new_array = realloc(fd->harray,
229 new_mem = realloc(outdir->buf, blocks * fs->blocksize);
233 new_mem = realloc(outdir->hashes,
  /external/icu4c/test/perf/collperf/
collperf.cpp 35 index = (int32_t *) realloc(index, sizeof(int32_t)); \
40 index = (int32_t *) realloc(index, sizeof(int32_t) * (count + 1)); \
42 data = (UNIT *) realloc(data, sizeof(UNIT) * index[count]); \
  /external/icu4c/test/cintltst/
cloctst.c 280 temp=(char*)realloc(temp, sizeof(char) * (cap+1));
294 temp=(char*)realloc(temp, sizeof(char) * (cap+1));
533 testLocale=(char*)realloc(testLocale, sizeof(char) * (u_strlen(dataTable[NAME][i])+1));
539 expected=(UChar*)realloc(expected, sizeof(UChar) * (strlen(temp) + 1));
547 expected=(UChar*)realloc(expected, sizeof(UChar) * (strlen(temp) + 1));
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp 341 void* result = realloc(header, n + sizeof(AllocAlignmentInteger));
353 return realloc(p, n);
367 void* result = realloc(p, n);
498 #define realloc fastRealloc
    [all...]
  /dalvik/tools/hprof-conv/
HprofConv.c 168 unsigned char* newStorage = realloc(pBuf->storage, newSize);
170 fprintf(stderr, "ERROR: realloc failed on size=%d\n", newSize);
  /dalvik/vm/
LinearAlloc.cpp 54 to support "free" and "realloc" calls in a limited way. We don't free
56 useful to erase storage to garbage values after a "free" or "realloc".
323 * utility out of "realloc", and when we're doing ENFORCE_READ_ONLY
420 return realloc(mem, newSize);
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 349 TextureRec* newTextures = (TextureRec*)realloc(m_tex.textures,
  /external/astl/src/
string.cpp 109 mData = static_cast<char*>(::realloc(mData, n + 1));
551 // realloc could have taken place.
  /external/chromium/base/
pickle.cc 68 CHECK(resized); // Realloc failed.
92 CHECK(resized); // Realloc failed.
407 void* p = realloc(header_, new_capacity);
  /external/dhcpcd/
if-bsd.c 329 p = realloc(link_buf, len);
  /external/dropbear/
dbutil.c 659 ret = realloc(ptr, size);
  /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
vpx_mem_tracker.c 65 static mem_track_realloc_func g_realloc = realloc;
  /external/openssl/crypto/rand/
rand_win.c 304 buf = realloc(buf,bufsz+8192);

Completed in 1606 milliseconds

<<1112131415161718