HomeSort by relevance Sort by last modified time
    Searched full:malloc (Results 551 - 575 of 6596) sorted by null

<<21222324252627282930>>

  /external/blktrace/btt/
aqd.c 39 ap = malloc(sizeof(*ap));
42 oname = malloc(strlen(aqd_name) + strlen(str) + 32);
  /external/chromium_org/net/disk_cache/
mapped_file_avoid_mmap_posix.cc 22 buffer_ = malloc(size);
23 snapshot_ = malloc(size);
  /external/chromium_org/third_party/WebKit/Source/wtf/
MallocZoneSupport.h 32 #include <malloc/malloc.h>
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/Win32/
esUtil_TGA.c 88 Buffer24= (RGBTRIPLE*)malloc(sizeof(RGBTRIPLE) * (*width) * (*height));
98 *buffer= (LPSTR) malloc(3 * (*width) * (*height));
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/
esShapes.c 65 *vertices = malloc ( sizeof(GLfloat) * 3 * numVertices );
68 *normals = malloc ( sizeof(GLfloat) * 3 * numVertices );
71 *texCoords = malloc ( sizeof(GLfloat) * 2 * numVertices );
74 *indices = malloc ( sizeof(GLushort) * numIndices );
234 *vertices = malloc ( sizeof(GLfloat) * 3 * numVertices );
244 *normals = malloc ( sizeof(GLfloat) * 3 * numVertices );
250 *texCoords = malloc ( sizeof(GLfloat) * 2 * numVertices );
274 *indices = malloc ( sizeof(GLushort) * numIndices );
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_memory_stdc.h 43 #define os_malloc(_size) malloc(_size)
67 #include <malloc.h>
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
example.c 97 data=malloc(total);
114 /* For this case, I will malloc the return strings */
148 *str1=malloc(os1->length+1);
149 *str2=malloc(os2->length+1);
261 data=malloc(total);
278 /* For this case, I will malloc the return strings */
315 *str1=malloc(os1->length+1);
316 *str2=malloc(os2->length+1);
  /external/chromium_org/third_party/skia/src/utils/
SkBitSet.cpp 17 fBitData.set(malloc(fDwordCount * sizeof(uint32_t)));
33 fBitData.set(malloc(fDwordCount * sizeof(uint32_t)));
  /external/chromium_org/third_party/sqlite/src/test/
mallocB.test 11 # This file contains additional out-of-memory checks (see malloc.tcl).
40 # malloc() failure in sqlite3_set_auxdata().
mallocG.test 12 # This test script checks malloc failures in various obscure operations.
28 # Malloc failures while opening a database connection.
  /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/compiler-rt/lib/asan/lit_tests/TestCases/
asan-symbolize-sanity-test.cc 28 int *array = (int*)malloc(40);
36 // CHECK: #{{.*}} in {{(wrap_|__interceptor_)?}}malloc
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 16 void *res = malloc/**/(size); break_optimization(0); return res;}
76 int *a = (int*)malloc(100 * sizeof(int));
80 int *r = (int*)malloc(10);
236 EXPECT_EQ(0, malloc(kOOMAllocationSize));
237 EXPECT_EQ(0, malloc(~Ident(0)));
243 int *a = (int*)Ident(malloc(100));
293 EXPECT_DEATH(Ident((char*)malloc(size))[-1] = 0, buff);
330 free(Ident(malloc(size)));
350 int *ptr = (int*)malloc(sizeof(int) * kMinElem);
358 // Realloc pointer returned by malloc(0)
    [all...]
  /external/e2fsprogs/lib/ss/
error.c 30 ret_val = malloc((unsigned)
41 ret_val = malloc((unsigned)sizeof(char) *
  /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/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/libyuv/files/unit_test/
unit_test.h 19 var##_mem = reinterpret_cast<uint8*>(malloc((size) + 15)); \
31 var##_mem = reinterpret_cast<uint8*>(malloc(((size) + 4095) & ~4095)); \
  /external/llvm/test/Transforms/GVN/
malloc-load-removal.ll 8 declare i8* @malloc(i64) nounwind
12 %call = tail call i8* @malloc(i64 100) nounwind
  /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
objsize-64.ll 4 declare noalias i8* @malloc(i32) nounwind
12 %call = call i8* @malloc(i32 4)
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_stdc.h 43 #define os_malloc(_size) malloc(_size)
67 #include <malloc.h>

Completed in 2314 milliseconds

<<21222324252627282930>>