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

1 23 4 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/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
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/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
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/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
  /prebuilt/ndk/android-ndk-r5/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
  /prebuilt/ndk/android-ndk-r6/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
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/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
  /system/extras/tests/bionic/libstdc++/
test_cstdlib.cpp 94 using ::realloc;
  /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,
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_ETC.c 54 *ppLine = (char *)realloc(*ppLine, defaultBufferSize);
107 *ppLine = (char *)realloc(*ppLine, i);
  /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))
  /hardware/ti/omap4xxx/
Android.mk 10 OMAP4_DEBUG_LDFLAGS:= $(foreach f, $(strip malloc realloc calloc free), -Wl,--wrap=$(f))
  /ndk/sources/host-tools/sed-4.2.1/lib/
getdelim.c 52 NULL), pointing to *N characters of space. It is realloc'ed as
74 new_lineptr = (char *) realloc (*lineptr, *n);
111 new_lineptr = (char *) realloc (*lineptr, needed);
  /external/bluetooth/glib/glib/
gmem.c 67 return realloc (mem, n_bytes);
74 # define standard_realloc realloc
79 # define standard_try_realloc realloc
91 return realloc (mem, n_bytes);
170 mem = glib_mem_vtable.realloc (mem, n_bytes);
271 if (vtable->malloc && vtable->realloc && vtable->free)
274 glib_mem_vtable.realloc = vtable->realloc;
278 glib_mem_vtable.try_realloc = vtable->try_realloc ? vtable->try_realloc : glib_mem_vtable.realloc;
282 g_warning (G_STRLOC ": memory allocation vtable lacks one of malloc(), realloc() or free()")
    [all...]
  /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/libvpx/nestegg/halloc/src/
halloc.c 15 #include <stdlib.h> /* realloc */
90 /* realloc */
182 * of realloc(ptr, 0), which is defined in the standard
190 allocator = realloc;
195 if ((p = realloc(p, 0)))
197 /* realloc cannot be used as free() */
206 * free'ing realloc()
209 return realloc(ptr, n);
  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.cpp 25 #undef realloc macro
74 return realloc(p, size);
118 void *fastRealloc(void* p, size_t n) { return realloc(p, n); }
  /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,
  /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/exp-ptrcheck/tests/
zero.stderr.exp 14 by 0x........: realloc (vg_replace_malloc.c:...)
  /system/extras/libpagemap/
pm_kernel.c 85 new_pids = realloc(pids, 2 * pids_size * sizeof(pid_t));
103 new_pids = realloc(pids, pids_count * sizeof(pid_t));
  /bionic/libc/stdlib/
setenv.c 68 P = (char **)realloc(lastenv, sizeof(char *) * (cnt + 2));
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
ReadBuffer.cpp 51 new_buf = (unsigned char*)realloc(m_buf, new_size);
  /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/e2fsprogs/lib/ss/
request_tbl.c 37 t = (ssrt **)realloc(info->rqt_tables, (unsigned)size*sizeof(ssrt));
  /external/expat/amiga/
stdlib.c 43 void * realloc (void * mem, size_t len2) function

Completed in 1687 milliseconds

1 23 4 5 6 7 8 91011>>