Searched defs:realloc (Results 1 - 25 of 46) sorted by last modified time

12

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h481 #define os_realloc(p, s) realloc((p), (s))
616 #define realloc OS_DO_NOT_USE_realloc macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h481 #define os_realloc(p, s) realloc((p), (s))
616 #define realloc OS_DO_NOT_USE_realloc macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h481 #define os_realloc(p, s) realloc((p), (s))
616 #define realloc OS_DO_NOT_USE_realloc macro
/external/valgrind/main/perf/
H A Dtinycc.c2200 unsigned long data_allocated; /* used for realloc() handling */
2886 DEF(TOK_realloc, "realloc")
4218 DEF(TOK_realloc, "realloc")
6739 ptr1 = realloc(ptr, size);
6759 #define realloc(p, s) use_tcc_realloc(p, s)
6856 /* realloc section and set its content to zero */
6757 #define realloc macro
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h53 #define realloc(_cc,_pt,_sz) VG_(arena_realloc)(VG_AR_DEMANGLE,(_cc),(_pt),(_sz)) macro
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h161 #define realloc(p,size) VG_(arena_realloc) (VG_AR_CORE, "gdbsrv", p, size) macro
/external/valgrind/main/coregrind/
H A Dm_mallocfree.c2384 void* VG_(realloc) ( const HChar* cc, void* ptr, SizeT size ) function
/external/valgrind/main/drd/tests/
H A Dunit_vc.c15 void* VG_(realloc)(const HChar* cc, void* p, SizeT size) function
16 { return realloc(p, size); }
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c534 void* MC_(realloc) ( ThreadId tid, void* p_old, SizeT new_szB ) function
541 if (complain_about_silly_args(new_szB, "realloc"))
558 /* can not realloc a range that was allocated with new or new [] */
659 and not used for, handling of the normal libc realloc()
/external/sqlite/dist/orig/
H A Dsqlite3ext.h121 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
352 #define sqlite3_realloc sqlite3_api->realloc
/external/sqlite/dist/
H A Dsqlite3ext.h121 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
352 #define sqlite3_realloc sqlite3_api->realloc
/external/srec/portable/include/
H A Dpmemory.h67 #define REALLOC(p, n) realloc(p, n)
87 #define realloc #error macro
125 * Portable realloc()
130 * Portable realloc()
204 * Reallocates data. Similar to realloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
/external/srec/portable/src/
H A Dpmalloc.c36 #undef realloc macro
H A Dpmemfixed.c27 #undef realloc macro
H A Dpmemory.c36 #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(oldDat
[all...]
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c38 This is a version (aka dlmalloc) of malloc/free/realloc written by
189 a size_t, not counting any clearing in calloc or copying in realloc,
294 realloc are ignored. And all bookkeeping information is zeroed out
365 If true realloc() uses mremap() to re-allocate large blocks and
402 This should be set if a call to realloc with zero bytes should
405 realloc(p, 0).
616 #define realloc SDL_realloc macro
690 #define dlrealloc realloc
724 allocated using malloc or a related routine such as realloc.
738 realloc(voi
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsystem.h173 * realloc ::
183 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsystem.h173 * realloc ::
183 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftdbgmem.c137 FT_Realloc_Func realloc; member in struct:FT_MemTableRec_
324 table->realloc = memory->realloc;
835 memory->realloc = ft_mem_debug_realloc;
890 memory->realloc = table->realloc;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
H A Dftmisc.h78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h488 /// void *realloc(void *ptr, size_t size);
489 realloc, enumerator in enum:llvm::LibFunc::Func
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h111 # define realloc vpx_realloc macro
/external/jemalloc/include/jemalloc/
H A Djemalloc.h179 # define realloc je_realloc macro
H A Djemalloc_mangle.h18 # define realloc je_realloc macro

Completed in 2785 milliseconds

12