HomeSort by relevance Sort by last modified time
    Searched full:malloc (Results 751 - 775 of 4430) sorted by null

<<31323334353637383940>>

  /external/hyphenation/
substrings.c 194 char *pat = (char*) malloc(l+1);
195 char *org = (char*) malloc(l*2+1);
226 char *newpat=malloc(l+1);
230 char *neworg = malloc(132); // TODO: compute exact length
  /external/iproute2/ip/
ipmaddr.c 109 struct ma_info *ma = malloc(sizeof(m));
138 struct ma_info *ma = malloc(sizeof(m));
150 ma = malloc(sizeof(m));
181 struct ma_info *ma = malloc(sizeof(m));
  /external/iproute2/netem/
paretonormal.c 18 #include <malloc.h>
  /external/libffi/testsuite/libffi.call/
struct7.c 46 (test_structure_7 *) malloc (sizeof(test_structure_7));
struct8.c 48 (test_structure_8 *) malloc (sizeof(test_structure_8));
  /external/libselinux/src/
label.c 77 rec = (struct selabel_handle *)malloc(sizeof(*rec));
  /external/libsepol/src/
genusers.c 51 if ((buffer = (char *)malloc(255 * sizeof(char))) == NULL) {
97 (user_datum_t *) malloc(sizeof(user_datum_t));
200 scontext = malloc(p - q);
246 scontext = malloc(p - q);
hashtab.c 46 p = (hashtab_t) malloc(sizeof(hashtab_val_t));
55 p->htable = (hashtab_ptr_t *) malloc(sizeof(hashtab_ptr_t) * size);
85 newnode = (hashtab_ptr_t) malloc(sizeof(hashtab_node_t));
160 newnode = (hashtab_ptr_t) malloc(sizeof(hashtab_node_t));
policydb_convert.c 54 pf.data = malloc(pf.len);
  /external/libvpx/nestegg/halloc/
README 5 malloc/free interface that simplifies tasks of memory disposal
  /external/llvm/include/llvm/Support/
Allocator.h 36 void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); }
39 T *Allocate() { return static_cast<T*>(malloc(sizeof(T))); }
43 return static_cast<T*>(malloc(sizeof(T)*Num));
103 /// defaults to MallocSlabAllocator, which wraps malloc, but it could be
  /external/llvm/test/Transforms/InstCombine/
objsize.ll 127 %0 = tail call noalias i8* @malloc(i32 20) nounwind
139 %0 = tail call noalias i8* @malloc(i32 20) nounwind
150 declare noalias i8* @malloc(i32) nounwind
154 %alloc = call noalias i8* @malloc(i32 48) nounwind
  /external/netperf/
netcpu_perfstat.c 78 perfstat_buffer = (perfstat_cpu_t *)malloc(lib_num_loc_cpus *
82 "cpu_start: malloc failed errno %d\n",
155 perfstat_buffer = (perfstat_cpu_t *)malloc(lib_num_loc_cpus *
159 "calibrate_perfstat: malloc failed errno %d\n",
netcpu_pstat.c 68 psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
70 printf("malloc(%d) failed!\n", lib_num_loc_cpus * sizeof(*psp));
132 psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
134 printf("malloc(%d) failed!\n", lib_num_loc_cpus * sizeof(*psp));
  /external/oprofile/libpopt/
system.h 72 #define xstrdup(_str) (strcpy((malloc(strlen(_str)+1) ? : vmefail()), (_str)))
  /external/qemu/
compatfd.c 77 info = malloc(sizeof(*info));
  /external/qemu/elff/
elf_alloc.cc 41 reinterpret_cast<ElfAllocatorChunk*>(malloc(ELF_ALLOC_CHUNK_SIZE));
  /external/qemu/target-i386/
hax-windows.h 19 #include <malloc.h>
  /external/srec/portable/src/
PANSIFileSystemImpl.c 120 key = MALLOC(sizeof(LCHAR) * len, MTAG);
132 value = MALLOC(sizeof(LCHAR) * (LSTRLEN(realPath) + 1), MTAG);
296 key = MALLOC(sizeof(LCHAR), MTAG);
304 value = MALLOC(sizeof(LCHAR), MTAG);
  /external/valgrind/main/helgrind/tests/
tc24_nonzero_sem.c 54 s = malloc(sizeof(*s));
  /external/valgrind/main/massif/tests/
deep.c 16 void a12(int n) { malloc(n); }
  /external/valgrind/main/memcheck/tests/
err_disable1.c 26 block = malloc(10);
err_disable3.c 41 block = malloc(10);
leak-tree.c 28 Node *x = malloc(sizeof(Node));
origin1-yes.c 59 // Malloc block, uninitialised, 32-bit
61 int* ptr_to_undef_malloc_int = malloc(sizeof(int));
69 int* ptr_to_undef_malloc_int2 = malloc(sizeof(int));
73 // malloc'd block.

Completed in 1652 milliseconds

<<31323334353637383940>>