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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libstdc++/src/
new.cpp 8 void* p = malloc(size);
17 void* p = malloc(size);
36 return malloc(size);
41 return malloc(size);
  /ndk/tests/awk/convert-deps-to-cygwin/
cygwin-deps-1.in 4 C:/NDK/sysroot/include/malloc.h
cygwin-deps-1.out 4 /cygdrive/c/NDK/sysroot/include/malloc.h
cygwin-deps-2.in 2 C:/NDK/sysroot/include/malloc.h
cygwin-deps-2.out 2 /cygdrive/c/NDK/sysroot/include/malloc.h
  /external/libgsm/src/
gsm_create.c 22 # include <malloc.h>
24 extern char * malloc();
38 r = (gsm)malloc(sizeof(struct gsm_state));
  /external/clearsilver/man/man3/
cgiwrap_iterenv.3 35 k - a malloc'd copy of the variable name
37 v - a malloc'd copy of the variable value
hdf_set_buf.3 30 value -> the malloc'd value
36 malloc'd, since it will attempt to free it when
  /external/webkit/WebKitTools/android/flex-2.5.4a/
configure.in 15 AC_HAVE_HEADERS(string.h malloc.h sys/types.h)
  /external/chromium/base/allocator/
generic_allocators.cc 6 // low-level functions malloc() and free(). This way, including a new
16 ptr = malloc(size);
52 // If flag is 0 (default), calls to malloc will behave normally.
53 // If flag is 1, calls to malloc will behave like calls to new,
71 void* result = malloc(size);
90 // Generally, calls to malloc() have padding. So a request
91 // to malloc N bytes actually malloc's N+x bytes. Later, if
105 #undef malloc macro
122 return malloc(size)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertex.java 38 bindConstants(va.mAlloc, 0);
103 public Allocation mAlloc;
110 mAlloc = Allocation.createSized(rs, Element.createUser(rs, Element.DataType.FLOAT_32), 48);
111 mAlloc.subData1D(MODELVIEW_OFFSET, 16, mModel.mMat);
112 mAlloc.subData1D(PROJECTION_OFFSET, 16, mProjection.mMat);
113 mAlloc.subData1D(TEXTURE_OFFSET, 16, mTexture.mMat);
117 mAlloc.destroy();
118 mAlloc = null;
123 mAlloc.subData1D(MODELVIEW_OFFSET, 16, m.mMat);
128 mAlloc.subData1D(PROJECTION_OFFSET, 16, m.mMat)
    [all...]
  /external/jpeg/
jmemnobs.c 11 * can be obtained from malloc().
23 #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
24 extern void * malloc JPP((size_t size));
31 * routines malloc() and free().
37 return (void *) malloc(sizeofobject);
57 return (void FAR *) malloc(sizeofobject);
  /external/bison/m4/
dmalloc.m4 9 [AC_MSG_CHECKING([if malloc debugging is wanted])
16 [Define if using the dmalloc debugging malloc package])
  /external/icu4c/samples/layout/
arraymem.h 16 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
  /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/webkit/WebKitTools/android/flex-2.5.4a/MISC/MSDOS/
djgpp.sed 10 /sed.*extern.*malloc/ c\
  /bionic/libc/bionic/
malloc_debug_common.c 31 * routines that are used by malloc leak detection code and other components in
35 * more tricky, malloc leak detection code, implemented in
204 /* Support for malloc debugging.
207 * malloc routines should not be compiled at all.
211 /* Table for dispatching malloc calls, initialized with default dispatchers. */
217 /* Selector of dispatch table to use for dispatching malloc calls. */
220 void* malloc(size_t bytes) { function
221 return __libc_malloc_dispatch->malloc(bytes);
236 /* We implement malloc debugging only in libc.so, so code bellow
255 /* Table for dispatching malloc calls, depending on environment. *
    [all...]
malloc_debug_common.h 30 * Contains declarations of types and constants used by malloc leak
70 /* Entry in malloc dispatch table. */
73 /* Address of the actual malloc routine. */
74 void* (*malloc)(size_t bytes); member in struct:MallocDebug
85 /* Malloc debugging initialization routine.
86 * This routine must be implemented in .so modules that implement malloc
88 * routine implemented in bionic/libc/bionic/malloc_debug_common.c when malloc
  /external/bison/lib/
malloc.c 0 /* malloc() function that is glibc compatible.
23 #undef malloc macro
35 return malloc (n);
  /system/core/libacc/tests/data/
brackets.c 38 int* ar = (int*) malloc(100);
46 int* ar = (int*) malloc(lenX * lenY * 4);
47 int** ar2D = (int**) malloc(lenX * 4);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
malloc.h 1 /* Prototypes and definition for malloc implementation.
50 extern void *malloc __MALLOC_P ((size_t __size)) __attribute_malloc__ __wur;
64 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
114 # define M_NLBLKS 2 /* UNUSED in this malloc */
117 # define M_GRAIN 3 /* UNUSED in this malloc */
120 # define M_KEEP 4 /* UNUSED in this malloc */
145 /* Record the state of all malloc variables in an opaque data structure. */
148 /* Restore the state of all malloc variables from data obtained with
152 /* Called once when malloc is initialized; redefining this variable in
174 #endif /* malloc.h *
    [all...]
  /external/e2fsprogs/intl/
xsize.h 34 void* p = malloc (header_size + n * element_size).
35 These computations can lead to overflow. When this happens, malloc()
40 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
42 or size_in_bounds_p() before invoking malloc().
45 void *p = (size_in_bounds_p (size) ? malloc (size) : NULL);
  /build/tools/apriori/
debug.h 45 static inline void *MALLOC(unsigned int size) {
46 void *m = malloc(size);
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
  /build/tools/iself/
debug.h 47 static inline void *MALLOC(unsigned int size) {
48 void *m = malloc(size);
49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
  /build/tools/isprelinked/
debug.h 45 static inline void *MALLOC(unsigned int size) {
46 void *m = malloc(size);
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);

Completed in 516 milliseconds

1 2 3 4 5 6 7 8 91011>>