Searched
full:malloc (Results
326 -
350 of
4430) sorted by null
<<11121314151617181920>>
/prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-x86/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-x86/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/ |
malloc.h | 36 extern __mallocfunc void* malloc(size_t); 75 p = malloc(n); 85 number of bytes allocated via malloc (or realloc, etc) but not yet 94 (normally sbrk) outside of malloc.
|
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/ |
malloc_allocator.h | 1 // Allocator that wraps "C" malloc -*- C++ -*- 44 * @brief An allocator that uses malloc. 48 * - all allocation calls malloc 90 pointer __ret = static_cast<_Tp*>(std::malloc(__n * sizeof(_Tp)));
|
/system/core/toolbox/ |
rmmod.c | 5 #include <malloc.h>
|
/external/icu4c/test/cintltst/ |
cdtdptst.c | 58 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("EEE MMM dd HH:mm:ss.SSS zzz yyyy G")+1 )); 72 s=(UChar*)malloc(sizeof(UChar) * (strlen("03-Apr-04 2:20:47 o'clock AM PST")+1) ); 129 s=(UChar*)malloc(sizeof(UChar) * (strlen("01/01/1997 10:11:42 AM")+1) ); 163 str=(UChar*)malloc(sizeof(UChar) * (strlen(s) + 1) ); 165 pat=(UChar*)malloc(sizeof(UChar) * (strlen(pattern) + 1) ); 201 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("yyyyMMddHHmmssSSS")+1) ); 249 pattern=(UChar*)malloc(sizeof(UChar) * (lneed+1) ); 253 tzID=(UChar*)malloc(sizeof(UChar) * 4); 313 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("MM/dd/yyyy 'at' hh:mm:ss a zzz")+1) ); 324 tzID=(UChar*)malloc(sizeof(UChar) * 4) [all...] |
/external/blktrace/btt/ |
aqd.c | 39 ap = malloc(sizeof(*ap)); 42 oname = malloc(strlen(aqd_name) + strlen(str) + 32);
|
/external/clang/test/Analysis/ |
no-outofbounds.c | 22 void *malloc(size_t); 28 struct vec *a = malloc(sizeof(struct vec) + 10); // expected-warning {{Cast a region whose size is not a multiple of the destination type size}}
|
/external/e2fsprogs/lib/ss/ |
error.c | 30 ret_val = malloc((unsigned) 41 ret_val = malloc((unsigned)sizeof(char) *
|
/external/expat/xmlwf/ |
readfilemap.c | 68 /* malloc will return NULL with nbytes == 0, handle files with size 0 */ 75 p = malloc(nbytes);
|
/external/hyphenation/ |
hnjalloc.c | 36 /* wrappers for malloc */ 46 p = malloc (size);
|
/external/iproute2/netem/ |
stats.c | 13 #include <malloc.h> 33 x = (double *)malloc(limit*sizeof(double));
|
/external/libvpx/vpx_mem/memory_manager/ |
hmm_dflt_abort.c | 18 ** case where HMM is being used to implement the malloc and free standard 20 ** I/O and execution termination functions that call malloc or free.
|
/external/llvm/test/Transforms/GlobalOpt/ |
2008-12-16-HeapSRACrash-2.ll | 9 %malloccall = tail call i8* @malloc(i32 trunc (i64 mul (i64 ptrtoint (i32* getelementptr (i32* null, i32 1) to i64), i64 2000000) to i32)) 16 declare noalias i8* @malloc(i32)
|
2008-12-16-HeapSRACrash.ll | 9 %malloccall = tail call i8* @malloc(i32 trunc (i64 mul (i64 ptrtoint (i32* getelementptr (i32* null, i32 1) to i64), i64 2000000) to i32)) 16 declare noalias i8* @malloc(i32)
|
2010-02-26-MallocSROA.ll | 15 %malloccall3 = tail call i8* @malloc(i32 %mallocsize2) nounwind ; <i8*> [#uses=1] 27 declare noalias i8* @malloc(i32)
|
/external/llvm/test/Transforms/InstCombine/ |
2008-05-08-StrLenSink.ll | 9 %tmp1 = call i8* @malloc( i32 10 ) nounwind ; <i8*> [#uses=5] 28 declare i8* @malloc(i32) nounwind
|
/external/openssh/openbsd-compat/regress/ |
snprintftest.c | 57 if ((src = malloc(BUFSZ)) == NULL) { 58 fail("malloc failed");
|
Completed in 1015 milliseconds
<<11121314151617181920>>