HomeSort by relevance Sort by last modified time
    Searched defs:realloc (Results 26 - 50 of 66) sorted by null

12 3

  /external/syslinux/com32/include/syslinux/
firmware.h 45 void *(*realloc)(void *, size_t); member in struct:mem_ops
  /external/syslinux/gpxe/src/core/
malloc.c 58 * @c malloc(0) or @c realloc(ptr,0) will return the special value @c
250 * Calling realloc() with a new size of zero is a valid way to free a
253 void * realloc ( void *old_ptr, size_t new_size ) { function
303 return realloc ( NULL, size );
317 realloc ( ptr, 0 );
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 53 #define realloc(_cc,_pt,_sz) VG_(arena_realloc)(VG_AR_DEMANGLE,(_cc),(_pt),(_sz)) macro
  /external/valgrind/coregrind/m_gdbserver/
server.h 167 #define realloc(p,size) VG_(realloc) ("gdbsrv", p, size) macro
  /hardware/qcom/msm8998/json-c/
json_util.c 13 #undef realloc macro
273 return realloc(p, n);
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftsystem.h 167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.h 18 # define realloc je_realloc macro
jemalloc_mangle_jet.h 18 # define realloc jet_realloc macro
jemalloc.h 337 # define realloc je_realloc macro
  /external/syslinux/com32/gplinclude/zzjson/
zzjson.h 39 void *(*realloc)(void *ptr, size_t size); // pa member in struct:ZZJSON_CONFIG
  /external/wayland/tests/
test-runner.c 84 realloc(void* mem, size_t size) function
351 /* Load system malloc, free, and realloc */
353 sys_realloc = dlsym(RTLD_NEXT, "realloc");
  /external/wpa_supplicant_8/src/utils/
os.h 488 #define os_realloc(p, s) realloc((p), (s))
641 #define realloc OS_DO_NOT_USE_realloc macro
  /bionic/libc/bionic/
malloc_common.cpp 64 Malloc(realloc),
160 extern "C" void* realloc(void* old_mem, size_t bytes) { function
161 auto _realloc = __libc_globals->malloc_dispatch.realloc;
165 return Malloc(realloc)(old_mem, bytes);
308 if (!InitMallocFunction<MallocRealloc>(impl_handler, &table->realloc, prefix, "realloc")) {
  /external/freetype/src/base/
ftdbgmem.c 137 FT_Realloc_Func realloc; member in struct:FT_MemTableRec_
325 table->realloc = memory->realloc;
839 memory->realloc = ft_mem_debug_realloc;
894 memory->realloc = table->realloc;
  /external/valgrind/memcheck/
mc_malloc_wrappers.c 534 void* MC_(realloc) ( ThreadId tid, void* p_old, SizeT new_szB ) function
541 if (MC_(record_fishy_value_error)(tid, "realloc", "size", new_szB))
558 /* can not realloc a range that was allocated with new or new [] */
659 and not used for, handling of the normal libc realloc()
    [all...]
  /external/capstone/include/
capstone.h 120 // User-defined dynamic memory related functions: malloc/calloc/realloc/free/vsnprintf()
121 // By default, Capstone uses system's malloc(), calloc(), realloc(), free() & vsnprintf().
125 cs_realloc_t realloc; member in struct:cs_opt_mem
  /external/harfbuzz_ng/src/
hb-private.hh 67 #define realloc hb_realloc_impl macro
422 new_array = (Type *) realloc (array, new_allocated * sizeof (Type));
  /external/oj-libjdwp/src/share/back/
util.h 43 #undef realloc macro
44 #define realloc(p) Do not use this interface. macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 476 extern void *realloc (void *, size_t);
751 #define really_call_realloc realloc
754 /* Flex and bison use malloc and realloc. Yuk. Note that this means
757 #define realloc xrealloc macro
773 #undef realloc macro
774 #pragma GCC poison malloc realloc
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 1301 int realloc = 0; local
2514 int realloc = 0; local
    [all...]
  /external/valgrind/coregrind/
m_mallocfree.c 2653 void* VG_(realloc) ( const HChar* cc, void* ptr, SizeT size ) function
    [all...]
  /external/sqlite/dist/orig/
sqlite3ext.h 119 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
407 #define sqlite3_realloc sqlite3_api->realloc
  /external/sqlite/dist/
sqlite3ext.h 119 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
407 #define sqlite3_realloc sqlite3_api->realloc
  /external/valgrind/perf/
tinycc.c 6757 #define realloc macro
    [all...]
  /external/robolectric/v1/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 795 milliseconds

12 3