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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/lib/
xstrdup.c 41 return strcpy (xmalloc (strlen (string) + 1), string);
xstrndup.c 43 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
Makefile.am 36 libeu_a_SOURCES = xstrdup.c xstrndup.c xmalloc.c next_prime.c \
  /external/strace/
xmalloc.h 40 #define xmalloc strace_malloc macro
44 void *xmalloc(size_t size) ATTRIBUTE_MALLOC ATTRIBUTE_ALLOC_SIZE((1));
xmalloc.c 37 #include "xmalloc.h"
52 xmalloc(size_t size) function
139 p = xmalloc(n + 1);
  /toolchain/binutils/binutils-2.27/ld/
ldmisc.h 31 extern void *xmalloc (size_t);
  /toolchain/binutils/binutils-2.27/libiberty/
xmemdup.c 1 /* xmemdup.c -- Duplicate a memory buffer, using xmalloc.
37 PTR output = xmalloc (alloc_size);
xvasprintf.c 58 result = (char *) xmalloc (total_width);
argv.c 75 copy = (char **) xmalloc ((argc + 1) * sizeof (char *));
141 is obtained from @code{xmalloc}. All of the memory can be returned to the
183 copybuf = (char *) xmalloc (strlen (input) + 1);
197 nargv = (char **) xmalloc (maxargc * sizeof (char *));
411 buffer = (char *) xmalloc (pos * sizeof (char) + 1);
426 file_argv = (char **) xmalloc (sizeof (char *));
partition.c 48 xmalloc (sizeof (struct partition_def) +
149 done = (char *) xmalloc (num_elements);
153 class_elements = (int *) xmalloc (num_elements * sizeof (int));
  /external/toybox/toys/other/
tac.c 30 temp = xmalloc(sizeof(struct arg_list));
  /toolchain/binutils/binutils-2.27/binutils/
bucomm.h 78 void *xmalloc (size_t);
  /toolchain/binutils/binutils-2.27/gprof/
search_list.c 46 new_el = (Search_List_Elem *) xmalloc (sizeof (*new_el) + len);
corefile.c 119 xmalloc (count * sizeof (struct function_map)));
145 symbol_map[count].file_name = (char *) xmalloc (strlen (dummy) + 1);
153 symbol_map[count].function_name = (char *) xmalloc (strlen (tmp) + 1);
216 core_syms = (asymbol **) xmalloc (core_sym_bytes);
490 char * buf = (char *) xmalloc (BUFSIZE);
491 char * address = (char *) xmalloc (BUFSIZE);
493 char * name = (char *) xmalloc (BUFSIZE);
516 char * buf = (char *) xmalloc (BUFSIZE);
517 char * address = (char *) xmalloc (BUFSIZE);
519 char * name = (char *) xmalloc (BUFSIZE)
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/gcov-src/
libgcov-kernel.h 29 #ifndef xmalloc
30 #define xmalloc vmalloc macro
  /external/dtc/tests/
appendprop2.c 50 buf = xmalloc(SPACE);
check_path.c 42 copy = xmalloc(FDT_COPY_SIZE);
overlay_bad_fixup.c 44 copy = xmalloc(FDT_COPY_SIZE);

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011>>