HomeSort by relevance Sort by last modified time
    Searched defs:malloc (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/clang/test/Sema/
implicit-builtin-freestanding.c 3 // RUN: %clang_cc1 -fsyntax-only -verify -fno-builtin-malloc %s
6 int malloc(int a) { return a; } function
implicit-builtin-redecl.c 4 static void* malloc(int);
5 static void* malloc(int size) { function
  /external/fec/
configure 2261 malloc (); function
    [all...]
  /external/valgrind/memcheck/tests/
wrapmallocso.c 4 /* Fake malloc/free functions that just print something. When run
8 void *malloc ( size_t size ) function
10 printf ("malloc\n");
wrapmallocstatic.c 4 /* Test that a program that has malloc/free interposed in the
10 void *p = malloc (1024);
16 /* Fake malloc/free functions that just print something. When run
20 void *malloc ( size_t size ) function
22 printf ("malloc\n");
static_malloc.c 5 void* malloc(size_t i) { function
16 p = malloc(10);
17 p = malloc(123);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
BaseMemAllocation.c 23 void *malloc (size_t size) function
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
pr5056.cpp 4 extern "C" void * malloc(int);
7 void *malloc(int);
11 inline void *A<T>::malloc(int) function in class:A
17 malloc(10);
  /external/compiler-rt/test/asan/TestCases/Linux/
interception_malloc_test.cc 12 extern "C" void *malloc(size_t size) { function
13 write(2, "malloc call\n", sizeof("malloc call\n") - 1);
18 char *x = (char*)malloc(10 * sizeof(char));
21 // CHECK: malloc call
  /external/compiler-rt/test/tsan/Linux/
user_malloc.cc 8 extern "C" void *malloc(unsigned long size) { function
11 fprintf(stderr, "user malloc\n");
20 volatile char *p = (char*)malloc(10);
25 // CHECK: user malloc
  /external/cmockery/cmockery_0_1_2/src/example/
allocate_module.c 24 #define malloc(size) _test_malloc(size, __FILE__, __LINE__) macro
30 int * const temporary = (int*)malloc(sizeof(int));
35 char * const memory = (char*)malloc(sizeof(int));
41 char * const memory = (char*)malloc(sizeof(int));
  /external/syslinux/dos/
malloc.c 2 * malloc.c
4 * Very simple linked-list based malloc()/free().
9 #include "malloc.h"
81 void *malloc(size_t size) function
107 p = malloc(size);
  /bionic/linker/
linker_memory.cpp 71 void* malloc(size_t byte_count) { function
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.c 21 #undef malloc macro
MyAlloc.h 38 #define malloc(size) MyAlloc ((size), __FILE__, __LINE__) macro
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.c 28 #undef malloc macro
MyAlloc.h 45 #define malloc(size) MyAlloc ((size), __FILE__, __LINE__) macro
  /external/boringssl/src/crypto/test/
malloc.cc 22 // builds and trying to override malloc in a static link doesn't work. It also
24 // ASan's malloc interceptor.
114 void *malloc(size_t size) { function
  /external/curl/lib/
curl_memory.h 29 * that use memory related functions strdup, malloc, calloc, realloc
41 * clone implementation while using malloc. Extra care needed inside
113 * libcurl's 'memory tracking' system defines strdup, malloc, calloc,
123 #undef malloc macro
124 #define malloc(size) Curl_cmalloc(size) macro
  /external/ipsec-tools/src/racoon/
gcmalloc.h 35 * Debugging malloc glue for Racoon.
46 * malloc(), calloc(), realloc(), and free() entry points in the main
55 malloc(size_t size) function
111 #define racoon_malloc(sz) malloc((sz))
  /external/libunwind/tests/
Gtest-nomalloc.c 38 malloc(size_t s) function
43 func = (void *(*)()) dlsym(RTLD_NEXT, "malloc");
  /external/swiftshader/third_party/subzero/src/
LinuxMallocProfiling.cpp 1 //===- subzero/src/LinuxMallocProfiling.cpp - malloc/new tracing ---------===//
11 /// \brief malloc/new/...caller tracing.
20 #include <malloc.h>
27 // InAllocatorFunction is true when we are tracing a new/malloc/...
46 // new, new[], and malloc are all defined as weak symbols to allow them to be
60 extern "C" void *malloc(size_t size) { function
70 *Ls << "NOTE: Malloc profiling is not thread safe. Use --threads=0 to "
  /external/vboot_reference/firmware/lib/include/
utility.h 109 #define malloc _do_not_use_standard_malloc macro
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 2 Definitions for memory allocation routines: calloc, malloc, realloc, free.
5 calloc, malloc, and realloc functions is unspecified. The pointer returned
62 // List of memory allocated by malloc/calloc/etc.
67 /** The malloc function allocates space for an object whose size is specified
84 malloc(size_t Size) function
93 DEBUG((DEBUG_ERROR, "ERROR malloc: Zero Size\n"));
99 DEBUG((DEBUG_POOL, "malloc(%d): NodeSz: %d", Size, NodeSize));
105 DEBUG((DEBUG_ERROR, "\nERROR malloc: AllocatePool returned %r\n", Status));
147 RetVal = malloc(NumSize);
161 does not match a pointer earlier returned by the calloc, malloc, or realloc
    [all...]
  /external/capstone/contrib/windows_kernel/
libc.cpp 33 __cdecl malloc( function
66 void *p = malloc(total);
85 return malloc(size);
90 void* mem = malloc(size);
121 return malloc(size);

Completed in 1334 milliseconds

1 2 3 4 5