HomeSort by relevance Sort by last modified time
    Searched refs:malloc (Results 576 - 600 of 2813) sorted by null

<<21222324252627282930>>

  /external/zlib/src/contrib/puff/
pufftest.c 67 buf = malloc(size = 4096);
150 dest = malloc(destlen);
  /frameworks/av/media/libmedia/
IEffectClient.cpp 119 cmd = (char *)malloc(cmdSize);
125 resp = (char *)malloc(replySize);
  /frameworks/base/core/jni/
android_backup_FileBackupHelperBase.cpp 52 char const** filesUTF = (char const**)malloc(sizeof(char*)*fileCount);
58 char const** keysUTF = (char const**)malloc(sizeof(char*)*keyCount);
  /frameworks/base/tools/aapt/
printapk.cpp 58 buf = malloc(size);
91 resfile = malloc(bufsize);
  /frameworks/rs/cpp/
RenderScript.cpp 17 #include <malloc.h>
96 void * rbuf = malloc(rbuf_size);
  /frameworks/rs/
rsStream.cpp 54 mData = (uint8_t*)malloc(len);
106 uint8_t *newData = (uint8_t*)malloc(mLength*2);
  /hardware/ti/omap4xxx/
Android.mk 13 OMAP4_DEBUG_LDFLAGS:= $(foreach f, $(strip malloc realloc calloc free), -Wl,--wrap=$(f))
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/
test_allocator.h 54 return (pointer)std::malloc(n * sizeof(T));
89 {return (T*)std::malloc(n * sizeof(T));}
  /ndk/sources/cxx-stl/llvm-libc++/test/re/
test_allocator.h 54 return (pointer)std::malloc(n * sizeof(T));
89 {return (T*)std::malloc(n * sizeof(T));}
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/
test_allocator.h 54 return (pointer)std::malloc(n * sizeof(T));
89 {return (T*)std::malloc(n * sizeof(T));}
  /system/core/libnl_2/
msg.c 19 #include <malloc.h>
34 nm = (struct nl_msg *) malloc(page_sz);
socket.c 21 #include <malloc.h>
40 sk = (struct nl_sock *) malloc(sizeof(struct nl_sock));
  /bootable/recovery/edify/
expr.c 28 // - return a malloc()'d string
54 Value* v = malloc(sizeof(Value));
71 char** strings = malloc(argc * sizeof(char*));
86 result = malloc(length+1);
152 char* err_src = malloc(len + 20);
330 Expr* e = malloc(sizeof(Expr));
334 e->argv = malloc(count * sizeof(Expr*));
406 char** args = malloc(count * sizeof(char*));
432 Value** args = malloc(count * sizeof(Value*));
459 char** args = (char**)malloc(argc * sizeof(char*))
    [all...]
  /external/valgrind/main/massif/tests/
peak2.post.exp 42 86.32% (1,616B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
54 89.33% (3,216B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
66 90.39% (4,816B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
78 90.93% (6,416B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
90 91.26% (8,016B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
102 91.48% (9,616B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
114 91.63% (11,216B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
126 91.75% (12,816B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
138 91.85% (14,416B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
150 91.92% (16,016B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc
    [all...]
  /bionic/libc/bionic/
pthread-atfork.c 111 struct atfork_t *entry = malloc(sizeof(struct atfork_t));
  /bionic/libc/stdio/
makebuf.c 62 if ((p = malloc(size)) == NULL) {
tempnam.c 50 if (!(name = malloc(MAXPATHLEN)))
  /bionic/libc/stdlib/
setenv.c 80 malloc((size_t)((int)(C - name) + l_value + 2))))
  /bootable/recovery/minui/
resources.c 113 surface = malloc(sizeof(GGLSurface) + pixelSize);
263 unsigned char* row = malloc(width);
275 surface = malloc(sizeof(GGLSurface));
280 unsigned char* pData = malloc(w*h);
  /dalvik/tools/gdbjithelper/
gdbjithelper.c 19 #include <malloc.h>
  /development/ndk/platforms/android-3/include/
string.h 33 #include <malloc.h>
  /development/tools/elftree/
elftree.c 75 struct seen *s = malloc(sizeof(*s));
76 s->name = malloc(strlen(name) + 1);
99 struct search_dir *dir = malloc(sizeof(*dir));
100 dir->path = malloc(strlen(path) + 1);
  /development/tools/yuv420sp2rgb/
debug.h 47 static inline void *MALLOC(unsigned int size) {
48 void *m = malloc(size);
49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
  /external/bison/lib/
msvc-inval.c 87 malloc (sizeof (struct gl_msvc_inval_per_thread));
xmalloc.c 1 /* xmalloc.c -- malloc with out of memory checking
41 void *p = malloc (n);

Completed in 1370 milliseconds

<<21222324252627282930>>