Searched defs:malloc (Results 1 - 25 of 63) sorted by last modified time

123

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h478 #define os_malloc(s) malloc((s))
615 #define malloc OS_DO_NOT_USE_malloc macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h478 #define os_malloc(s) malloc((s))
615 #define malloc OS_DO_NOT_USE_malloc macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h478 #define os_malloc(s) malloc((s))
615 #define malloc OS_DO_NOT_USE_malloc macro
/external/valgrind/main/perf/
H A Dtinycc.c2884 DEF(TOK_malloc, "malloc")
4216 DEF(TOK_malloc, "malloc")
6714 ptr = malloc(size);
6758 #define malloc(s) use_tcc_malloc(s)
6943 /* XXX: we rely only on malloc hooks */
21776 /* XXX: cannot do it with bound checking because of the malloc hooks */
6756 #define malloc macro
/external/valgrind/main/callgrind/
H A Ddebug.c438 void* CLG_(malloc)(const HChar* cc, UWord s, const HChar* f) function
441 return VG_(malloc)(cc,s);
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h159 #define malloc(sz) VG_(arena_malloc) (VG_AR_CORE, "gdbsrv", sz) macro
/external/valgrind/main/coregrind/
H A Dm_mallocfree.c3 /*--- An implementation of malloc/free which doesn't use sbrk. ---*/
2250 /*--- Services layered on top of malloc/free. ---*/
2369 void* VG_(malloc) ( const HChar* cc, SizeT nbytes ) function
/external/valgrind/main/drd/tests/
H A Dunit_bitmap.c27 void* VG_(malloc)(const HChar* cc, SizeT nbytes) function
28 { return malloc(nbytes); }
H A Dunit_vc.c13 void* VG_(malloc)(const HChar* cc, SizeT nbytes) function
14 { return malloc(nbytes); }
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c3 /*--- malloc/free wrappers for detecting errors and updating bits. ---*/
63 /*--- Tracking malloc'd and free'd blocks ---*/
68 /* Record malloc'd blocks. */
212 management is working correctly, any pointer returned by VG_(malloc)
232 /* If a user builds a pool from a malloc-ed superblock
407 void* MC_(malloc) ( ThreadId tid, SizeT n ) function
409 if (complain_about_silly_args(n, "malloc")) {
716 mp = VG_(malloc)("mc.cm.1", sizeof(MC_Mempool));
726 VG_(malloc) should be noaccess as far as the client is
/external/valgrind/main/memcheck/tests/
H A Dstatic_malloc.c5 void* malloc(size_t i) { function
16 p = malloc(10);
17 p = malloc(123);
/external/sqlite/dist/orig/
H A Dsqlite3ext.h113 void *(*malloc)(int); member in struct:sqlite3_api_routines
342 #define sqlite3_malloc sqlite3_api->malloc
/external/sqlite/dist/
H A Dsqlite3ext.h113 void *(*malloc)(int); member in struct:sqlite3_api_routines
342 #define sqlite3_malloc sqlite3_api->malloc
/external/srec/portable/include/
H A Dpmemory.h64 #define MALLOC(n, tag) malloc(n)
85 #define malloc #error macro
99 * Portable malloc()
104 * Portable malloc()
162 * Allocates specified number of bytes, similar to malloc but initializes the
/external/srec/portable/src/
H A Dpmalloc.c34 #undef malloc macro
49 * (the default), the memory is allocated via malloc(). This code works under PSOS and
70 /* malloc function */
96 /* The memory pool can either be statically allocated or require a one-time system malloc.
162 * a static memory pool. Otherwise, perform a one-time malloc from the OS.
169 /* TODO: is malloc of binsFirstFreeCell safe under PSOS in all conditions ? */
170 memBuffer = (char *)malloc(memSize);
H A Dpmemfixed.c25 #undef malloc macro
66 using the system malloc call. Of course, RTXC_PARTITION should only be defined on when you building
318 /* Use the system malloc for heap allocation. */
320 pHeap = (char*)malloc(initialHeapSize);
549 char* pStartAddress = (char*)malloc(requiredMemSize);
H A Dpmemory.c34 #undef malloc macro
119 #define malloc PortNew macro
560 The malloc() function shall allocate unused space for an object whose size in bytes is specified by size and whose value is unspecified.
562 The order and contiguity of storage allocated by successive calls to malloc() is unspecified. The pointer returned if the allocation succeeds shall be suitably aligned so that it may be assigned to a pointer to any type of object and then used to access such an object in the space allocated (until the space is explicitly freed or reallocated). Each such allocation shall yield a pointer to an object disjoint from any other object. The pointer returned points to the start (lowest byte address) of the allocated space. If the space cannot be allocated, a null pointer shall be returned. If the size of the space requested is 0, the behavior is implementation-defined: the value returned shall be either a null pointer or a unique pointer.
565 Upon successful completion with size not equal to 0, malloc() shall return a pointer to the allocated space. If size is 0, either a null pointer or a unique pointer that can be successfully passed to free() shall be returned. Otherwise, it shall return a null pointer and set errno to indicate the error.
606 gMemoryMap[idx].tag = malloc(sizeof(LCHAR) * (LSTRLEN(tag) + 1));
614 data = (MemoryData *) malloc(actualSize);
632 stackTrace = malloc(sizeof(LCHAR) * (stackTraceSize + 1));
724 If ptr is a null pointer, realloc() behaves like malloc() for the specified size.
726 If ptr does not match a pointer returned earlier by calloc(), malloc() o
[all...]
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c38 This is a version (aka dlmalloc) of malloc/free/realloc written by
45 Note: There may be an updated version of this malloc obtainable at
46 ftp://gee.cs.oswego.edu/pub/misc/malloc.c
57 For convenience, an include file for code using this malloc is at:
58 ftp://gee.cs.oswego.edu/pub/misc/malloc-2.8.3.h
61 excerpts from this file needed for using this malloc on ANSI C/C++
64 own malloc.h that does include all settings by cutting at the point
66 library containing a malloc that is based on some version of this
67 malloc (for example in linux). You might still want to use the one
77 than pointers, you can use a previous release of this malloc
614 #define malloc macro
[all...]
H A DSDL_qsort.c57 #ifdef malloc
58 #undef malloc macro
60 #define malloc SDL_malloc macro
326 char *pivot=malloc(size);
357 char *pivot=malloc(size);
388 char *pivot=malloc(WORD_BYTES);
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzguts.h115 extern voidp malloc OF((uInt size));
130 #define malloc(size) FXMEM_DefaultAlloc(size, 0) macro
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h408 /// void *malloc(size_t size);
409 malloc, enumerator in enum:llvm::LibFunc::Func
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h109 # define malloc vpx_malloc macro
/external/libvterm/include/
H A Dvterm.h111 void *(*malloc)(size_t size, void *allocdata); member in struct:__anon25012
/external/libunwind/tests/
H A DGtest-nomalloc.c38 malloc(size_t s) function
43 func = (void *(*)()) dlsym(RTLD_NEXT, "malloc");

Completed in 5294 milliseconds

123