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

1 2 3 4

  /external/openssh/
xmalloc.h 21 void *xrealloc(void *, size_t, size_t);
xmalloc.c 57 xrealloc(void *ptr, size_t nmemb, size_t size) function
63 fatal("xrealloc: zero size");
65 fatal("xrealloc: nmemb * size > SIZE_T_MAX");
71 fatal("xrealloc: out of memory (new_size %lu bytes)",
deattack.c 125 h = (u_int16_t *)xrealloc(h, l, HASH_ENTRYSIZE);
  /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/util/
wrapper.c 26 void *xrealloc(void *ptr, size_t size) function
cache.h 67 x = xrealloc((x), alloc * sizeof(*(x))); \
  /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/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 *));
  /external/elfutils/lib/
system.h 57 extern void *xrealloc (void *, size_t) __attribute__ ((__malloc__));
xmalloc.c 73 xrealloc (p, n) function
  /external/dhcpcd/
common.h 79 void *xrealloc(void *, size_t);
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.h 101 void *xrealloc(void *ptr, size_t size);
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.h 101 void *xrealloc(void *ptr, size_t size);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
libiberty.h 145 way xrealloc works. */
303 extern void *xrealloc (void *, size_t);
349 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
358 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
libiberty.h 145 way xrealloc works. */
303 extern void *xrealloc (void *, size_t);
349 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
358 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
libiberty.h 145 way xrealloc works. */
303 extern void *xrealloc (void *, size_t);
349 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
358 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
libiberty.h 145 way xrealloc works. */
303 extern void *xrealloc (void *, size_t);
349 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
358 #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,

Completed in 746 milliseconds

1 2 3 4