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

1 2 34 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libnss_compat-2.7.so 
libnss_compat.so 
libnss_compat.so.2 
libnss_files-2.7.so 
libnss_files.so 
libnss_files.so.2 
libnss_hesiod-2.7.so 
libnss_hesiod.so 
libnss_hesiod.so.2 
  /external/icu4c/common/
uvectr32.cpp 228 // We keep the original contents on the memory failure on realloc.
242 if (limit > (int32_t)(INT32_MAX / sizeof(int32_t))) { // integer overflow check for realloc
243 // Something is very wrong, don't realloc, leave capacity and maxCapacity unchanged
253 // Realloc the storage to the new, smaller size.
256 // Realloc to smaller failed.
  /external/tremolo/Tremolo/
misc.c 73 pointers=(void **)realloc(pointers,sizeof(void **)*palloced);
74 insertlist=(long *)realloc(insertlist,sizeof(long *)*palloced);
106 files=realloc(files,filecount*sizeof(*files));
107 file_bytes=realloc(file_bytes,filecount*sizeof(*file_bytes));
214 ptr=realloc(ptr,bytes);
  /external/chromium/base/allocator/
allocator_unittests.cc 404 void* new_p = realloc(p, start_sizes[s] + deltas[d]);
405 CHECK_EQ(p, new_p); // realloc should not allocate new memory
409 void* new_p = realloc(p, start_sizes[s] - deltas[d]);
410 CHECK_EQ(p, new_p); // realloc should not allocate new memory
422 reinterpret_cast<unsigned char*>(realloc(src, dst_size));
430 // Now make sure realloc works correctly even when we overflow the
442 p[i] = reinterpret_cast<int*>(realloc(p[i], 9000));
453 // Test that realloc to zero does not return NULL.
457 ptr = reinterpret_cast<char*>(realloc(ptr, 0));
  /external/chromium/third_party/libevent/
select.c 224 if ((readset_in = realloc(sop->event_readset_in, fdsz)) == NULL)
227 if ((readset_out = realloc(sop->event_readset_out, fdsz)) == NULL)
230 if ((writeset_in = realloc(sop->event_writeset_in, fdsz)) == NULL)
233 if ((writeset_out = realloc(sop->event_writeset_out, fdsz)) == NULL)
236 if ((r_by_fd = realloc(sop->event_r_by_fd,
240 if ((w_by_fd = realloc(sop->event_w_by_fd,
  /bionic/libc/bionic/
malloc_debug_common.c 228 void* realloc(void* oldMem, size_t bytes) { function
229 return __libc_malloc_dispatch->realloc(oldMem, bytes);
406 gMallocUse.realloc =
420 gMallocUse.realloc =
435 gMallocUse.realloc =
450 gMallocUse.realloc =
463 (gMallocUse.realloc == NULL) ||
469 gMallocUse.calloc, gMallocUse.realloc,
malloc_debug_common.h 79 /* Address of the actual realloc routine. */
80 void* (*realloc)(void* oldMem, size_t bytes); member in struct:MallocDebug
  /bionic/libc/include/
malloc.h 38 extern __mallocfunc void* realloc(void *, size_t);
85 number of bytes allocated via malloc (or realloc, etc) but not yet
  /dalvik/vm/jdwp/
ExpandBuf.cpp 96 newPtr = (u1*) realloc(pBuf->storage, pBuf->maxLen);
98 LOGE("realloc(%d) failed", pBuf->maxLen);
  /development/ndk/platforms/android-3/include/
malloc.h 38 extern __mallocfunc void* realloc(void *, size_t);
85 number of bytes allocated via malloc (or realloc, etc) but not yet
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
SocketStream.cpp 71 unsigned char *p = (unsigned char *)realloc(m_buf, allocSize);
76 ERR("%s: realloc (%d) failed\n", __FUNCTION__, allocSize);
  /external/mksh/src/
lalloc.c 27 #define remalloc(p,n) ((p) == NULL ? malloc(n) : realloc((p), (n)))
29 #define remalloc(p,n) realloc((p), (n))
  /external/skia/gpu/include/
GrMemory.h 55 void* realloc(size_t newSize, bool growOnly = false) { function in class:GrAutoMalloc
125 void* realloc(size_t newSize, bool growOnly = false) { function in class:GrAutoSMalloc
  /external/valgrind/main/drd/tests/
unit_vc.c 15 void* VG_(realloc)(HChar* cc, void* p, SizeT size) function
16 { return realloc(p, size); }
  /external/valgrind/main/memcheck/tests/
origin1-yes.stderr.exp 31 Undef 5 of 8 (realloc)
35 at 0x........: realloc (vg_replace_malloc.c:...)
  /external/webkit/Tools/DumpRenderTree/mac/
CheckedMalloc.cpp 83 savedRealloc = zone->realloc;
85 zone->realloc = checkedRealloc;
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
malloc.h 38 extern __mallocfunc void* realloc(void *, size_t);
85 number of bytes allocated via malloc (or realloc, etc) but not yet

Completed in 933 milliseconds

1 2 34 5 6 7 8 91011>>