Searched
full:malloc (Results
401 -
425 of
6596) sorted by null
<<11121314151617181920>>
/external/chromium_org/third_party/skia/src/ports/ |
SkMemory_malloc.cpp | 44 void* p = malloc(size);
|
/external/chromium_org/third_party/skia/src/utils/ios/ |
SkStream_NSData.mm | 12 void* src = malloc(length);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/ |
malloc_extension.h | 33 // Extra extensions exported by some malloc implementations. These 35 // application can link against a malloc that does not implement these 95 // instrumented malloc implemenatations. One example: this routine 96 // sets environemnt variables to tell STL to use libc's malloc() 109 // Get a human readable description of the current state of the malloc 146 // Control operations for getting and setting malloc implementation 192 // name for the current malloc implementation. 198 // valid property name for the current malloc implementation, or 204 // be called by threads as a hint to the malloc implementation that 212 // Most malloc implementations ignore this routine [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
libc_override.h | 34 // versions of malloc/free/new/delete/etc. That is, it provides the 35 // logic that makes it so calls to malloc(10) go through tcmalloc, 36 // rather than the default (libc) malloc. 65 // we remove malloc/new/etc from mscvcrt.dll, and just need to define
|
/external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/ |
malloc_extension.h | 33 // Extra extensions exported by some malloc implementations. These 35 // application can link against a malloc that does not implement these 95 // instrumented malloc implemenatations. One example: this routine 96 // sets environemnt variables to tell STL to use libc's malloc() 109 // Get a human readable description of the current state of the malloc 146 // Control operations for getting and setting malloc implementation 212 // name for the current malloc implementation. 218 // valid property name for the current malloc implementation, or 224 // be called by threads as a hint to the malloc implementation that 232 // Most malloc implementations ignore this routine [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
libc_override.h | 34 // versions of malloc/free/new/delete/etc. That is, it provides the 35 // logic that makes it so calls to malloc(10) go through tcmalloc, 36 // rather than the default (libc) malloc. 65 // we remove malloc/new/etc from mscvcrt.dll, and just need to define
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
win32prng.c | 30 bytes = malloc(howMany);
|
/external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/tests/ |
test-expected.cc | 22 : b(new int), c(), f(static_cast<int*>(malloc(sizeof(int)))) {}
|
test-original.cc | 23 : a(NULL), b(new int), c(), f(static_cast<int*>(malloc(sizeof(int)))) {}
|
/external/chromium_org/tools/deep_memory_profiler/ |
README.policy | 9 the memory region. It's one of {malloc, mmap, default, optional}. <pattern> 12 For each memory chunks allocated by malloc, its calling stack frame of malloc 13 is compared with these classification policies whose <region-type> is 'malloc'
|
sorter.malloc-type.json | 4 "world": "malloc",
|
/external/chromium_org/tools/deep_memory_profiler/tests/data/ |
heap.01234.0002.buckets | 1 6 malloc t0x0 nno_typeinfo 0x7f630b0e1c3c 0x7f630b0e1ba5 0x7f6308e1d21b 0x7f6308e1d157 0x7f6308e1e2e0 0x7f6308e1dff9 0x7f6308e1db4c 0x7f6308e17cd0 0x7f6308e13370 0x7f6308de1b18 0x7f6308e12f9f 0x7f6308e12f2f 0x7f630978f482 0x7f630978e785 0x12e93499fa0f 0x12e93499f038 0x12e93499ee28 0x12e934925d44 0x12e934907177 0x7f630a88841d 0x7f630a887f04 0x7f630a7ea908 0x7f6308342a17 0x7f63083427a6 0x7f6308390b75 0x7f630897225b 0x7f6308971f0f 0x7f6308de27da 0x7f6308de2379 0x7f6308e13d89 0x7f6308ea5011 0x7f6308ea52ec
|
heap.01234.0002.heap | 18 profiled-malloc 3054552 3025880
|
/external/clang/test/CodeGen/ |
blockstret.c | 12 void *malloc(__SIZE_TYPE__ size); 19 BigStruct_t (^global)(void) = ^{ return *(BigStruct_t *)malloc(sizeof(struct bigbig)); }; 26 BigStruct_t *result = malloc(sizeof(BigStruct_t)); 88 BigStruct_t *result = (BigStruct_t *)malloc(sizeof(BigStruct_t));
|
/external/clang/test/SemaObjC/ |
at-defs.m | 24 TestObject * a = (id)malloc(100);
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/ |
interception_failure_test.cc | 17 char *x = (char*)malloc(10 * sizeof(char));
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
deep_stack_uaf.cc | 23 char *x = (char*)malloc(10);
|
double-free.cc | 6 char *x = (char*)malloc(10 * sizeof(char));
|
free_hook_realloc.cc | 19 int *x = (int*)malloc(100);
|
invalid-free.cc | 6 char *x = (char*)malloc(10 * sizeof(char));
|
log_path_fork_test.cc.disabled | 13 void *x = malloc(10);
|
partial_right.cc | 8 volatile int *x = (int*)malloc(2*sizeof(int) + 2);
|
/external/compiler-rt/lib/asan/tests/ |
asan_racy_double_free_test.cc | 26 x[i] = malloc(128);
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/ |
large_allocation_leak.cc | 11 void *large_alloc = malloc(33554432);
|
use_globals_initialized.cc | 14 data_var = malloc(1337);
|
Completed in 1167 milliseconds
<<11121314151617181920>>