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

<<11121314151617181920>>

  /external/qemu/
qemu-malloc.c 2 * malloc-like functions for system emulation.
48 ptr = qemu_oom_check(malloc(size ? size : 1));
  /external/valgrind/main/VEX/test/
frstor.c 66 unsigned short* buf1 = malloc(54*sizeof(short));
67 unsigned short* buf2 = malloc(54*sizeof(short));
  /external/valgrind/main/drd/tests/
omp_prime.c 78 primes = malloc(n * sizeof(primes[0]));
79 pflag = malloc(n * sizeof(pflag[0]));
pth_barrier.c 75 t = malloc(nthread * sizeof(struct threadinfo));
76 array = malloc(iterations * sizeof(array[0]));
pth_inconsistent_cond_wait.c 12 #include <stdlib.h> // malloc()
57 sem_t* p = malloc(sizeof(*p));
  /external/valgrind/main/helgrind/tests/
tc15_laog_lockdel.c 16 mx1 = malloc(sizeof(pthread_mutex_t));
17 mx2 = malloc(sizeof(pthread_mutex_t));
  /external/valgrind/main/memcheck/tests/
errs1.stderr.exp 8 at 0x........: malloc (vg_replace_malloc.c:...)
22 at 0x........: malloc (vg_replace_malloc.c:...)
leak-pool.c 35 struct pool *p = malloc(sizeof(struct pool));
39 p->buf = malloc(p->allocated);
origin2-not-quite.stderr.exp 7 at 0x........: malloc (vg_replace_malloc.c:...)
17 at 0x........: malloc (vg_replace_malloc.c:...)
partiallydefinedeq.c 27 int* junk1 = malloc(sizeof(int));
28 int* junk2 = malloc(sizeof(int));
pdb-realloc2.c 35 UChar* p = malloc(size);
64 v = malloc(size+100);
  /external/valgrind/main/memcheck/tests/x86/
tronical.S 42 foo = malloc(sizeof(struct Foo));
95 call VG_SYM_ASM(malloc)
  /external/webkit/Source/JavaScriptCore/API/tests/
Node.c 32 Node* node = (Node*)malloc(sizeof(Node));
43 NodeLink* nodeLink = (NodeLink*)malloc(sizeof(NodeLink));
  /external/webkit/Source/JavaScriptCore/wtf/
MallocZoneSupport.h 32 #include <malloc/malloc.h>
  /external/webkit/Source/WebCore/platform/win/
SSLKeyGeneratorWin.cpp 57 // Use malloc instead of new, because malloc guarantees to return a pointer aligned for all data types.
  /external/webrtc/src/system_wrappers/source/
atomic32_linux.h 18 #include <malloc.h>
54 _ptrMemory = malloc(sizeof(WebRtc_Word32)*2);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
m4vh263_decoder_pv_types.h 24 #include <stdlib.h> // for free, malloc, etc
37 #define oscl_malloc malloc
  /frameworks/base/tools/aapt/
printapk.cpp 58 buf = malloc(size);
91 resfile = malloc(bufsize);
  /frameworks/base/tools/aidl/
aidl_language_y.y 83 user_data_type* b = (user_data_type*)malloc(sizeof(user_data_type));
104 user_data_type* b = (user_data_type*)malloc(sizeof(user_data_type));
129 interface_type* c = (interface_type*)malloc(sizeof(interface_type));
139 interface_type* c = (interface_type*)malloc(sizeof(interface_type));
149 interface_type* c = (interface_type*)malloc(sizeof(interface_type));
211 method_type *method = (method_type*)malloc(sizeof(method_type));
226 method_type *method = (method_type*)malloc(sizeof(method_type));
265 arg_type* arg = (arg_type*)malloc(sizeof(arg_type));
  /frameworks/native/opengl/tests/gralloc/
gralloc.cpp 43 void* temp = malloc(size);
44 void* temp2 = malloc(size);
  /ndk/sources/cxx-stl/gabi++/src/
new.cc 36 void* ptr = malloc(size);
54 return malloc(size);
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdlib.in.h 91 # undef malloc
92 # define malloc rpl_malloc
93 extern void * malloc (size_t size);
96 # undef malloc
97 # define malloc(s) \
98 (GL_LINK_WARNING ("malloc is not POSIX compliant everywhere - " \
99 "use gnulib module malloc-posix for portability"), \
100 malloc (s))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
mcheck.h 39 before `malloc' is ever called. ABORTFUNC is called with an error code
51 /* Check for aberrations in a particular malloc'd block. You must have
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
types.h 59 #include <stdlib.h> /* For malloc decl. */
60 #define mem_alloc(bsize) malloc(bsize)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
mcheck.h 39 before `malloc' is ever called. ABORTFUNC is called with an error code
51 /* Check for aberrations in a particular malloc'd block. You must have

Completed in 981 milliseconds

<<11121314151617181920>>