HomeSort by relevance Sort by last modified time
    Searched refs:xrealloc (Results 1 - 25 of 46) 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);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
wrapper.c 27 void *xrealloc(void *ptr, size_t size) function
cache.h 54 x = xrealloc((x), alloc * sizeof(*(x))); \
util.h 178 extern void *xrealloc(void *ptr, size_t size) __attribute__((weak));
  /external/bison/lib/
xalloc.h 60 void *xrealloc (void *p, size_t s)
117 return xrealloc (p, n * s);
206 return xrealloc (p, n * s);
228 xrealloc (T *p, size_t s) function
230 return (T *) xrealloc ((void *) p, s);
xmalloc.c 51 xrealloc (void *p, size_t 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/elfutils/0.153/lib/
xmalloc.c 73 xrealloc (p, n) function
system.h 70 extern void *xrealloc (void *, size_t) __attribute__ ((__malloc__));
  /external/dhcpcd/
common.h 79 void *xrealloc(void *, size_t);
configure.c 135 ne = xrealloc(ne, sizeof(char *) * (j + 1));
241 env = xrealloc(env, sizeof(char *) * (elen + 2));
248 env = xrealloc(env, sizeof(char *) * (elen + 2));
256 env = xrealloc(env, sizeof(char *) * (elen + e + 1));
268 env = xrealloc(env, sizeof(char *) * (elen + e + 1));
278 env = xrealloc(env, sizeof(char *) * (elen + e + 1));
288 env = xrealloc(env, sizeof(char *) * (elen + e + 1));
363 env = xrealloc(env, sizeof(char *) * (elen + 2));
if-options.c 154 lst[i] = xrealloc(lst[i], l + lv + 2);
165 newlist = xrealloc(lst, sizeof(char *) * (i + 2));
288 v = xrealloc(v, sizeof(char *) * ((*argc)));
698 ifo->config = xrealloc(ifo->config,
709 ifo->whitelist = xrealloc(ifo->whitelist,
719 ifo->blacklist = xrealloc(ifo->blacklist,
730 ifo->arping = xrealloc(ifo->arping,
common.c 276 xrealloc(void *ptr, size_t s) function
282 syslog(LOG_ERR, "memory exhausted (xrealloc %zu bytes)", s);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
libiberty.h 149 way xrealloc works. */
307 extern void *xrealloc (void *, size_t);
353 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
362 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
  /ndk/sources/host-tools/make-3.81/
commands.c 161 plus_value = xrealloc (plus_value, plus_max = plus_len);
210 qmark_value = xrealloc (qmark_value, qmark_max = qmark_len);
214 bar_value = xrealloc (bar_value, bar_max = bar_len);
314 lines = (char **) xrealloc ((char *) lines,
326 lines = (char **) xrealloc ((char *) lines,
rule.c 496 xrealloc ((char *) r->lens, max_targets * sizeof (unsigned int));
498 xrealloc ((char *) r->suffixes, max_targets * sizeof (char *));
509 r->lens = (unsigned int *) xrealloc ((char *) r->lens,
511 r->suffixes = (char **) xrealloc ((char *) r->suffixes,
expand.c 68 variable_buffer = (char *) xrealloc (variable_buffer,
558 value = xrealloc (value, strlen (value))
misc.c 340 #undef xrealloc
355 xrealloc (char *ptr, unsigned int size)
335 #undef xrealloc macro
350 xrealloc (char *ptr, unsigned int size) function
  /external/chromium_org/third_party/yasm/source/patched-yasm/
util.h 127 # define yasm_xrealloc(ptr, size) xrealloc(ptr, size)
  /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 1047 milliseconds

1 2