HomeSort by relevance Sort by last modified time
    Searched full:malloc (Results 176 - 200 of 6594) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu4c/samples/layout/
arraymem.h 16 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
  /external/llvm/test/Transforms/InstCombine/
badmalloc.ll 6 declare noalias i8* @malloc(i64) nounwind
11 %A = call noalias i8* @malloc(i64 4) nounwind
25 ; CHECK: @malloc
26 %A = call noalias i8* @malloc(i64 4) nounwind
  /external/oprofile/libutil/
op_libiberty.h 21 #define OP_ATTRIB_MALLOC __attribute__((malloc))
40 /* Allocate memory without fail. If malloc fails, this will print a
46 realloc type functions are not suitable for attribute malloc since
67 #define xmalloc(s) malloc(s)
  /external/skia/src/gpu/
GrMemory.cpp 15 void* ptr = ::malloc(bytes);
  /external/valgrind/main/VEX/test/
fstenv.c 13 unsigned int* buf = malloc(7*sizeof(int));
  /external/valgrind/main/massif/tests/
big-alloc.c 12 malloc(10 * 1024 * 1024);
  /external/valgrind/main/memcheck/tests/
badrw.c 5 void* x = malloc(10);
clo_redzone_128.stderr.exp 5 at 0x........: malloc (vg_replace_malloc.c:...)
fwrite.stderr.exp-kfail 4 at 0x........: malloc (vg_replace_malloc.c:...)
holey_buffer_too_small.c 19 a = malloc(8);
25 a = malloc(8);
31 a = malloc(8);
37 a = malloc(8);
pipe.c 11 int *filedes = malloc(2 * sizeof(int));
realloc1.c 13 char* p = malloc(1);
trivialleak.stderr.exp 2 at 0x........: malloc (vg_replace_malloc.c:...)
trivialleak.stderr.exp2 2 at 0x........: malloc (vg_replace_malloc.c:...)
  /external/valgrind/main/tests/
Makefile.am 19 malloc.h \
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetProgramInfoLog.cpp 10 char* buf = (char*) malloc(infoLen);
glGetShaderInfoLog.cpp 10 char* buf = (char*) malloc(infoLen);
  /development/ndk/platforms/android-3/include/
malloc.h 21 * Declaration of malloc routines. Bionic uses dlmalloc (see
23 * defined malloc.h interface small.
30 extern __mallocfunc void* malloc(size_t);
  /external/chromium_org/sandbox/linux/suid/common/
suid_unsafe_environment_variables.h 20 #include <stdlib.h> // malloc
51 // Return a malloc allocated string containing the 'saved' environment variable
62 char* const saved_envvar = (char*) malloc(saved_envvarlen);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_large_unittest.cc 33 // This is a unit test for large allocations in malloc and friends.
39 #include <stdlib.h> // for malloc, free, realloc
50 void* p1 = malloc(size);
53 void* p2 = malloc(1);
66 unsigned char* p = static_cast<unsigned char*>(malloc(size));
92 printf("Test malloc(0) x %d\n", kZeroTimes);
104 printf("Test small malloc\n");
105 void* p_small = malloc(4*1048576);
110 printf("Test malloc(0 - N)\n");
118 // The small malloc above guarantees that all these return NULL
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_large_unittest.cc 33 // This is a unit test for large allocations in malloc and friends.
39 #include <stdlib.h> // for malloc, free, realloc
50 void* p1 = malloc(size);
53 void* p2 = malloc(1);
66 unsigned char* p = static_cast<unsigned char*>(malloc(size));
92 printf("Test malloc(0) x %d\n", kZeroTimes);
104 printf("Test small malloc\n");
105 void* p_small = malloc(4*1048576);
110 printf("Test malloc(0 - N)\n");
118 // The small malloc above guarantees that all these return NULL
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/
policy.android.browser.json 197 "allocator": "malloc"
202 "allocator": "malloc"
207 "allocator": "malloc"
212 "allocator": "malloc"
217 "allocator": "malloc"
222 "allocator": "malloc"
227 "allocator": "malloc"
232 "allocator": "malloc"
237 "allocator": "malloc"
242 "allocator": "malloc"
    [all...]
  /external/clang/test/CodeGen/
2002-07-14-MiscListTests.c 5 void *malloc(unsigned);
28 Data = (list*)malloc(12); // This is not a proper list allocation
44 *L = (list*)malloc(sizeof(list));
  /external/llvm/test/Transforms/GlobalOpt/
malloc-promote-2.ll 8 ; CHECK-NOT: call i8* @malloc
10 %malloccall = tail call i8* @malloc(i64 mul (i64 100, i64 4))
19 declare noalias i8* @malloc(i64)
malloc-promote-3.ll 8 ; CHECK: call i8* @malloc
9 %malloccall = tail call i8* @malloc(i64 mul (i64 100, i64 4)) nobuiltin
18 declare noalias i8* @malloc(i64)

Completed in 551 milliseconds

1 2 3 4 5 6 78 91011>>