HomeSort by relevance Sort by last modified time
    Searched refs:Malloc (Results 1 - 15 of 15) sorted by null

  /bionic/libc/bionic/
malloc_debug_common.cpp 30 // routines that are used by malloc leak detection code and other components in
34 // more tricky, malloc leak detection code, implemented in
51 #define Malloc(function) je_ ## function
54 #define Malloc(function) dl ## function
64 // Support for malloc debugging.
65 // Table for dispatching malloc calls, initialized with default dispatchers.
67 Malloc(calloc),
68 Malloc(free),
69 Malloc(mallinfo),
70 Malloc(malloc)
258 extern "C" void* malloc(size_t bytes) { function
    [all...]
  /external/lldb/include/lldb/Expression/
IRMemoryMap.h 52 lldb::addr_t Malloc (size_t size, uint8_t alignment, uint32_t permissions, AllocationPolicy policy, Error &error);
  /external/lldb/source/Expression/
IRInterpreter.cpp 287 lldb::addr_t data_address = Malloc(value->getType());
335 lldb::addr_t Malloc (size_t size, uint8_t byte_alignment)
351 return Malloc(m_target_data.getPointerSize(), m_target_data.getPointerPrefAlignment());
354 lldb::addr_t Malloc (llvm::Type *type)
358 return Malloc(m_target_data.getTypeAllocSize(type), m_target_data.getPrefTypeAlignment(type));
396 lldb::addr_t data_address = Malloc(value->getType());
759 lldb::addr_t R = frame.Malloc(T);
770 lldb::addr_t P = frame.Malloc(Tptr);
    [all...]
IRExecutionUnit.cpp 50 lldb::addr_t allocation_process_addr = Malloc (size,
630 record.m_process_address = Malloc(record.m_size,
Materializer.cpp 85 lldb::addr_t mem = map.Malloc(m_persistent_variable_sp->GetByteSize(),
511 m_temporary_allocation = map.Malloc(data.GetByteSize(), byte_align, lldb::ePermissionsReadable | lldb::ePermissionsWritable, IRMemoryMap::eAllocationPolicyMirror, alloc_error);
747 m_temporary_allocation = map.Malloc(byte_size, byte_align, lldb::ePermissionsReadable | lldb::ePermissionsWritable, IRMemoryMap::eAllocationPolicyMirror, alloc_error);
    [all...]
ClangUserExpression.cpp 671 m_materialized_address = m_execution_unit_ap->Malloc(m_materializer_ap->GetStructByteSize(),
692 m_stack_frame_bottom = m_execution_unit_ap->Malloc(stack_frame_size,
    [all...]
IRMemoryMap.cpp 235 IRMemoryMap::Malloc (size_t size, uint8_t alignment, uint32_t permissions, AllocationPolicy policy, Error &error)
255 error.SetErrorString("Couldn't malloc: invalid allocation policy");
262 error.SetErrorString("Couldn't malloc: address space is full");
281 error.SetErrorString("Couldn't malloc: address space is full");
299 error.SetErrorString("Couldn't malloc: process doesn't support allocating memory");
306 error.SetErrorString("Couldn't malloc: process doesn't exist, and this memory must be in the process");
343 log->Printf("IRMemoryMap::Malloc (%" PRIu64 ", 0x%" PRIx64 ", 0x%" PRIx64 ", %s) -> 0x%" PRIx64,
  /external/chromium_org/base/process/
memory_unittest.cc 23 #include <malloc/malloc.h>
28 #include <malloc.h>
109 // The following code tests the system implementation of malloc() thus no need
113 // The Mavericks malloc library changed in a way which breaks the tricks used
130 buf = malloc(std::numeric_limits<size_t>::max() - (2 * PAGE_SIZE) - 1);
144 // On 64 bit Macs, the malloc system automatically abort()s on heap corruption
148 // AddressSanitizer replaces malloc() and prints a different error message on
151 "was not malloc\\(\\)-ed");
226 TEST_F(OutOfMemoryDeathTest, Malloc) {
    [all...]
  /external/chromium_org/base/allocator/
allocator_unittest.cc 365 TEST(Allocators, Malloc) {
368 unsigned char* ptr = reinterpret_cast<unsigned char*>(malloc(size));
409 void* p = malloc(start_sizes[s]);
428 unsigned char* src = reinterpret_cast<unsigned char*>(malloc(src_size));
443 int** p = reinterpret_cast<int**>(malloc(sizeof(*p) * kNumEntries));
447 p[i] = reinterpret_cast<int*>(malloc(8192));
464 char* ptr = reinterpret_cast<char*>(malloc(size));
  /external/llvm/lib/IR/
Core.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 196 // If Dead[n].first is the only use of a malloc result, we can delete its
821 /// the specified malloc. Because it is always the result of the specified
822 /// malloc, there is no reason to actually DO the malloc. Instead, turn the
823 /// malloc into a global, and any loads of GV as uses of the new global.
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm     [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 31 #include <malloc.h>
167 // Check that malloc poisons memory.
170 int *x = (int*)malloc(sizeof(int));
266 // malloc() in the following test may be optimized to produce a compile-time
269 S4 *x = (int*)malloc(sizeof(S4));
274 TEST(MemorySanitizer, Malloc) {
275 S4 *x = (int*)Ident(malloc(sizeof(S4)));
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js 3584 function malloc(sp) function
    [all...]
  /external/chromium_org/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 1177 milliseconds