HomeSort by relevance Sort by last modified time
    Searched refs:xrealloc (Results 1 - 25 of 33) sorted by null

1 2

  /external/oprofile/libutil/
op_libiberty.h 48 void * xrealloc(void *, size_t);
68 #define xrealloc(p,s) realloc(p,s) macro
op_growable_buffer.c 34 b->p = xrealloc(b->p, new_size);
op_fileio.c 153 buf = xrealloc(buf, max + 128);
  /external/elfutils/lib/
system.h 24 extern void *xrealloc (void *, size_t) __attribute__ ((__malloc__));
xmalloc.c 60 xrealloc (p, n) function
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 53 xrealloc (p, n) function
  /ndk/sources/host-tools/sed-4.2.1/lib/
xalloc.h 58 void *xrealloc (void *p, size_t s);
136 return xrealloc (p, n * s);
225 return xrealloc (p, n * s);
248 xrealloc (T *p, size_t s) function
250 return (T *) xrealloc ((void *) p, s);
xmalloc.c 55 xrealloc (void *p, size_t n) function
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 72 #define xrealloc(_pt,_sz) \ macro
73 VG_(arena_realloc)(VG_AR_DEMANGLE,"m_demangle.xrealloc",(_pt),(_sz))
91 ((_Ty *) xrealloc((void *) (_Pt), sizeof (_Ty) * (_Nn)))
94 ((_Ty *) xrealloc((_Pt), (_Sz)))
  /external/bison/lib/
xalloc.h 52 void *xrealloc (void *p, size_t s);
xmalloc.c 89 xrealloc (void *p, size_t n) function
177 return xrealloc (p, n * s);
quotearg.c 610 slotvec = xrealloc (slotvec, n1 * sizeof *slotvec);
  /external/dhcpcd/
common.h 77 void *xrealloc(void *, size_t);
configure.c 135 ne = xrealloc(ne, sizeof(char *) * (j + 1));
218 env = xrealloc(env, sizeof(char *) * (elen + 2));
225 env = xrealloc(env, sizeof(char *) * (elen + 2));
233 env = xrealloc(env, sizeof(char *) * (elen + e + 1));
243 env = xrealloc(env, sizeof(char *) * (elen + e + 1));
256 env = xrealloc(env, sizeof(char *) * (elen + e + 1));
311 env = xrealloc(env, sizeof(char *) * (elen + 2));
if-options.c 150 lst[i] = xrealloc(lst[i], l + lv + 2);
161 newlist = xrealloc(lst, sizeof(char *) * (i + 2));
284 v = xrealloc(v, sizeof(char *) * ((*argc)));
689 ifo->config = xrealloc(ifo->config,
700 ifo->whitelist = xrealloc(ifo->whitelist,
710 ifo->blacklist = xrealloc(ifo->blacklist,
721 ifo->arping = xrealloc(ifo->arping,
common.c 250 xrealloc(void *ptr, size_t s) function
256 syslog(LOG_ERR, "memory exhausted (xrealloc %zu bytes)", s);
  /external/dropbear/
scpmisc.h 42 void *xrealloc(void *, size_t);
scpmisc.c 64 xrealloc(void *ptr, size_t new_size) function
69 fprintf(stderr, "xrealloc: zero size\n");
77 fprintf(stderr, "xrealloc: out of memory (new_size %lu bytes)\n", (u_long) new_size);
160 args->list = xrealloc(args->list, nalloc * sizeof(char *));
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
libiberty.h 133 way xrealloc works. */
291 extern void *xrealloc (void *, size_t);
335 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
344 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
libiberty.h 133 way xrealloc works. */
291 extern void *xrealloc (void *, size_t);
335 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
344 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
libiberty.h 133 way xrealloc works. */
291 extern void *xrealloc (void *, size_t);
335 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
344 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
  /external/dbus/tools/
dbus-cleanup-sockets.c 71 xrealloc (void *old, size_t bytes) function
187 entries = xrealloc (entries, sizeof (SocketEntry*) * allocated);
  /external/oprofile/libutil++/
child_reader.cpp 142 buf2 = (char *)xrealloc(buf2, sz_buf2);
  /external/oprofile/opjitconv/
jitsymbol.c 143 xrealloc(entries_symbols_ascending,
146 xrealloc(entries_address_ascending,
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 289 module_names = xrealloc(module_names, size);

Completed in 370 milliseconds

1 2