OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:malloc
(Results
626 - 650
of
6596
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
pagemap_unittest.cc
69
Type map(
malloc
);
81
Type map(
malloc
);
94
Type map(
malloc
);
104
Type map(
malloc
);
124
Type map(
malloc
);
malloc_extension_c_test.c
81
free(
malloc
(10));
82
free(
malloc
(20));
102
char* x = (char*)
malloc
(10);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
pagemap_unittest.cc
69
Type map(
malloc
);
81
Type map(
malloc
);
94
Type map(
malloc
);
104
Type map(
malloc
);
124
Type map(
malloc
);
malloc_extension_c_test.c
81
free(
malloc
(10));
82
free(
malloc
(20));
102
char* x = (char*)
malloc
(10);
/external/chromium_org/tools/valgrind/
valgrind.sh
37
"--
malloc
-fill=41" "--free-fill=41" \
100
# G_SLICE=always-
malloc
: make glib use system
malloc
103
# NSS_DISABLE_ARENA_FREE_LIST=1: make nss use system
malloc
114
G_SLICE=always-
malloc
\
/external/compiler-rt/lib/asan/tests/
asan_mac_test_helpers.mm
69
char * volatile mem = (char * volatile)
malloc
(size);
75
char * volatile mem = (char * volatile)
malloc
(size);
170
char * volatile mem = (char * volatile)
malloc
(10);
187
char * volatile mem = (char * volatile)
malloc
(10);
205
char * volatile mem = (char * volatile)
malloc
(10);
/external/icu4c/test/cintltst/
nfsprep.c
79
b1 = (UChar*)
malloc
(b1Len * U_SIZEOF_UCHAR);
95
b2 = (UChar*)
malloc
(b2Len * U_SIZEOF_UCHAR);
107
b3 = (char*)
malloc
(b3Len);
237
p = (char*)
malloc
(pLen);
250
s = (char*)
malloc
(pLen);
/external/jpeg/
jmem-android.c
22
#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare
malloc
(),free() */
23
extern void *
malloc
JPP((size_t size));
34
* routines
malloc
() and free().
40
return (void *)
malloc
(sizeofobject);
60
return (void FAR *)
malloc
(sizeofobject);
/external/libselinux/src/
context.c
27
(context_private_t *)
malloc
(sizeof(context_private_t));
28
context_t result = (context_t)
malloc
(sizeof(context_s_t));
71
n->component[i] = (char *)
malloc
(p - tok + 1);
132
n->current_str =
malloc
(total);
157
t = (char *)
malloc
(strlen(str) + 1);
/external/llvm/docs/HistoricalNotes/
2001-02-09-AdveComments.txt
50
o I still have some major concerns about including
malloc
and free in the
53
C, C++ Java and Fortran 90 would not be able to use our
malloc
anyway
58
Having a single
malloc
would just not suffice, and instead would simply
62
Instead, providing a default library version of
malloc
and free
72
problems with
malloc
listed above.
/external/qemu/distrib/jpeg-6b/
jmem-android.c
22
#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare
malloc
(),free() */
23
extern void *
malloc
JPP((size_t size));
34
* routines
malloc
() and free().
40
return (void *)
malloc
(sizeofobject);
60
return (void FAR *)
malloc
(sizeofobject);
/external/valgrind/main/include/
pub_tool_replacemalloc.h
3
/*---
Malloc
replacement. pub_tool_replacemalloc.h ---*/
34
/* If a tool replaces
malloc
() et al, the easiest way to do so is to
56
/* Some options that can be used by a tool if
malloc
() et al are replaced.
58
control over these aspects of Valgrind's version of
malloc
(). */
60
/* DEBUG: print
malloc
details? default: NO */
/bootable/recovery/edify/
expr.c
28
// - return a
malloc
()'d string
54
Value* v =
malloc
(sizeof(Value));
71
char** strings =
malloc
(argc * sizeof(char*));
86
result =
malloc
(length+1);
152
char* err_src =
malloc
(len + 20);
330
Expr* e =
malloc
(sizeof(Expr));
334
e->argv =
malloc
(count * sizeof(Expr*));
406
char** args =
malloc
(count * sizeof(char*));
432
Value** args =
malloc
(count * sizeof(Value*));
459
char** args = (char**)
malloc
(argc * sizeof(char*))
[
all
...]
/external/checkpolicy/
queue.c
17
q = (queue_t)
malloc
(sizeof(struct queue_info));
33
newnode = (queue_node_ptr_t)
malloc
(sizeof(struct queue_node));
57
newnode = (queue_node_ptr_t)
malloc
(sizeof(struct queue_node));
/external/chromium_org/third_party/mesa/src/src/gallium/
README.portability
36
* Use
MALLOC
, CALLOC, FREE instead of the
malloc
, calloc, free functions.
85
struct texture_buffer *t =
malloc
(sizeof(*t));
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
util_array.h
47
array->data =
malloc
(array->size * array->datatype_size);
59
array->data =
malloc
(array->size * array->datatype_size);
74
void *data =
malloc
(size);
/external/chromium_org/third_party/opus/src/celt/
os_support.h
42
/** Opus wrapper for
malloc
(). To do your own dynamic allocation, all you need to do is replace this function and opus_free */
46
return
malloc
(size);
85
#pragma GCC poison
malloc
free realloc calloc
/external/chromium_org/third_party/sqlite/src/src/
mem1.c
14
** SQLite will use the standard C-library
malloc
/realloc/free interface
30
** Like
malloc
(), but remember the size of the allocation
41
p =
malloc
( nByte+8 );
/external/chromium_org/third_party/tcmalloc/chromium/src/
libc_override_redefine.h
34
//
malloc
/new/etc. (Typically this will be a windows msvcrt.dll that
38
// This should also work on systems were all the
malloc
routines are
69
void*
malloc
(size_t s) __THROW { return tc_malloc(s); }
stacktrace.cc
44
// pointer. It also doesn't call
malloc
.
48
//
malloc
() from the unwinder. This is a problem because we're
49
// trying to use the unwinder to instrument
malloc
().
/external/chromium_org/third_party/tcmalloc/vendor/src/
libc_override_redefine.h
34
//
malloc
/new/etc. (Typically this will be a windows msvcrt.dll that
38
// This should also work on systems were all the
malloc
routines are
69
void*
malloc
(size_t s) __THROW { return tc_malloc(s); }
stacktrace.cc
44
// pointer. It also doesn't call
malloc
.
48
//
malloc
() from the unwinder. This is a problem because we're
49
// trying to use the unwinder to instrument
malloc
().
/external/chromium_org/tools/deep_memory_profiler/lib/
sorter.py
17
os.path.join(BASE_PATH, 'sorter.
malloc
-component.json'),
18
os.path.join(BASE_PATH, 'sorter.
malloc
-type.json'),
30
virtual memory and
malloc
arena. Such different spaces are called "worlds"
31
in dmprof. (For example, the "vm" world and the "
malloc
" world.)
110
"""Represents a Unit for a
malloc
'ed memory block."""
275
"""Represents a Rule to match with
malloc
'ed blocks."""
300
assert unit.bucket.allocator_type == '
malloc
'
340
elif dct['world'] == '
malloc
':
360
elif sorter_dict['world'] == '
malloc
':
403
"""Represents a Sorter for
malloc
'ed blocks.""
[
all
...]
/external/e2fsprogs/e2fsck/
mtrace.c
1
/* More debugging hooks for `
malloc
'.
89
hdr = (__ptr_t)
malloc
(size);
147
/* Be sure it doesn't
malloc
its buffer! */
/external/libffi/testsuite/libffi.call/
pyobjc-tc.c
50
point_type.elements =
malloc
(3 * sizeof(ffi_type*));
58
size_type.elements =
malloc
(3 * sizeof(ffi_type*));
66
rect_type.elements =
malloc
(3 * sizeof(ffi_type*));
Completed in 1878 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>