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

1 2 34 5 6 7 8 91011>>

  /external/linux-tools-perf/util/
cpumap.c 66 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
77 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
146 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
values.c 46 values->pid = realloc(values->pid,
48 values->tid = realloc(values->tid,
50 values->value = realloc(values->value,
83 values->counterrawid = realloc(values->counterrawid,
85 values->countername = realloc(values->countername,
91 values->value[i] = realloc(values->value[i],
  /external/qemu/docs/
ANDROID-MEMCHECK.TXT 21 libc.so hooks up every memory allocation call (malloc, free, calloc, realloc,
35 When a free, or realloc operation is performed on the emulated system, emulator
36 can verify that the pointer passed to free/realloc matches the address of a
  /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);
stdlib.in.h 106 # undef realloc
107 # define realloc rpl_realloc
108 extern void * realloc (void *ptr, size_t size);
111 # undef realloc
112 # define realloc(p,s) \
113 (GL_LINK_WARNING ("realloc is not POSIX compliant everywhere - " \
114 "use gnulib module realloc-posix for portability"), \
115 realloc (p, s))
  /external/bison/m4/
malloc.m4 78 # Test whether malloc, realloc, calloc are POSIX compliant,
82 AC_CACHE_CHECK([whether malloc, realloc, calloc are POSIX compliant],
  /external/chromium/net/base/
io_buffer.cc 88 // realloc will crash if it fails.
89 real_data_.reset(static_cast<char*>(realloc(real_data_.release(), capacity)));
  /external/chromium/third_party/libevent/
poll.c 229 tmp_event_set = realloc(pop->event_set,
232 event_warn("realloc");
237 tmp_event_r_back = realloc(pop->event_r_back,
241 event_warn("realloc");
246 tmp_event_w_back = realloc(pop->event_w_back,
251 event_warn("realloc");
268 realloc(pop->idxplus1_by_fd, new_count * sizeof(int));
270 event_warn("realloc");
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_mem.cc 76 // Attempt to realloc the block
77 char* newdata = static_cast<char*>(realloc(data_, need));
  /external/chromium_org/net/base/
io_buffer.cc 95 // realloc will crash if it fails.
96 real_data_.reset(static_cast<char*>(realloc(real_data_.release(), capacity)));
  /external/chromium_org/third_party/libevent/
poll.c 229 tmp_event_set = realloc(pop->event_set,
232 event_warn("realloc");
237 tmp_event_r_back = realloc(pop->event_r_back,
241 event_warn("realloc");
246 tmp_event_w_back = realloc(pop->event_w_back,
251 event_warn("realloc");
268 realloc(pop->idxplus1_by_fd, new_count * sizeof(int));
270 event_warn("realloc");
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 15 #ifdef realloc
18 #define XREALLOC realloc
  /external/harfbuzz/src/
harfbuzz-impl.h 88 #define REALLOC(_ptr,_newsz) \
104 REALLOC(_ptr,(_newcnt)*sizeof(_type))
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-impl.h 92 #define REALLOC(_ptr,_newsz) \
108 REALLOC(_ptr,(_newcnt)*sizeof(_type))
  /external/libmtp/examples/
newplaylist.c 54 if ((tmp = realloc(ids, sizeof(uint32_t) * (idcount))) == NULL) {
55 printf("realloc failed\n");
  /external/valgrind/main/memcheck/tests/
pdb-realloc2.c 2 /* A test which involves copying (using realloc) a block containing
59 p = realloc(p, size+i);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libmemusage.so 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libmemusage.so 
  /development/ndk/platforms/android-3/include/
malloc.h 32 extern void* realloc(void *, size_t);
  /external/bison/lib/
spawn_faction_init.c 35 void *newmem = realloc (file_actions->_actions,
  /external/chromium_org/ppapi/native_client/src/untrusted/nacl_ppapi_util/
string_buffer.cc 54 new_buffer = reinterpret_cast<char *>(realloc(buffer_, 2 * nbytes_));
  /external/chromium_org/skia/ext/
SkMemory_new_handler.cpp 36 void* p = realloc(addr, size);
  /external/chromium_org/third_party/icu/source/tools/genrb/
ustr.h 38 /* A C representation of a string "object" (to avoid realloc all the time) */
  /external/chromium_org/third_party/icu/source/tools/tzcode/
ialloc.c 42 return realloc((void *) pointer, (size_t) nonzero(size));
  /external/chromium_org/third_party/skia/src/gpu/
GrAllocPool.h 28 * passed to realloc/free/delete or any other function that assumes the

Completed in 1510 milliseconds

1 2 34 5 6 7 8 91011>>