OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:malloc
(Results
276 - 300
of
2813
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/icu4c/test/letest/
letest.h
29
#define NEW_ARRAY(type,count) (type *)
malloc
((count) * sizeof(type))
/external/libsepol/src/
constraint.c
32
if ((expr->type_names =
malloc
(sizeof(*expr->type_names))) == NULL) {
/external/llvm/runtime/libprofile/
BasicBlockTracing.c
59
ArrayStart =
malloc
(ArraySize * sizeof (unsigned));
/external/quake/quake/src/WinQuake/
snd_next.cpp
31
shm =
malloc
(size);
/external/skia/legacy/src/ports/
SkMemory_malloc.cpp
44
void* p =
malloc
(size);
/external/skia/src/ports/
SkMemory_malloc.cpp
44
void* p =
malloc
(size);
/external/stlport/stlport/stl/
_tempbuf.c
43
_Tp* __tmp = (_Tp*)
malloc
((size_t)__len * sizeof(_Tp));
/external/tremolo/Tremolo/
os.h
60
# include <
malloc
.h>
/external/valgrind/main/exp-sgcheck/tests/
hsg.c
30
unsigned char* duh =
malloc
(100 * sizeof(char));
/external/valgrind/main/helgrind/tests/
free_is_write.c
11
the
malloc
'd area, then free it. */
28
s_mem =
malloc
(10);
tc04_free_lock.c
17
XX* xx =
malloc
(sizeof(XX));
/external/valgrind/main/include/
pub_tool_mallocfree.h
40
extern void* VG_(
malloc
) ( HChar* cc, SizeT nbytes );
50
// If tool is replacing
malloc
for the client, the below returns
/external/valgrind/main/massif/tests/
deep.c
16
void a12(int n) {
malloc
(n); }
/external/valgrind/main/memcheck/tests/
err_disable1.c
26
block =
malloc
(10);
leak-tree.stderr.exp
6
at 0x........:
malloc
(vg_replace_malloc.c:...)
12
at 0x........:
malloc
(vg_replace_malloc.c:...)
varinfo2.c
24
char* undefp =
malloc
(1);
/external/valgrind/main/none/tests/
bug129866.c
9
result =
malloc
(size);
/external/valgrind/main/perf/
heap.c
24
arr[j] =
malloc
(nbytes);
/external/webkit/Source/JavaScriptCore/wtf/brew/
SystemMallocBrew.h
36
// By default, memory allocated using
MALLOC
() is initialized
39
return
MALLOC
(n | ALLOC_NO_ZMEM);
44
return
MALLOC
(numElements * elementSize);
57
// Use
MALLOC
macro instead of the standard
malloc
function.
58
// Although RVCT provides
malloc
, we can't use it in BREW
60
#define
malloc
(n) mallocBrew(n)
macro
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
memory.c
59
// we need to call the `real'
malloc
and free, not our replacements
60
#undef
malloc
macro
90
if (!(pool =
malloc
(chunksize))) return 0;
128
ch =
malloc
(minreq);
131
ch =
malloc
(pool->chunksize);
/external/webp/src/utils/
utils.c
34
return
malloc
((size_t)(nmemb * size));
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
q_plsf.cpp
90
if ((s = (Q_plsfState *)
malloc
(sizeof(Q_plsfState))) == NULL)
92
/* fprintf(stderr, "Q_plsf_init: can not
malloc
state structure\n"); */
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
m4venc_oscl.h
31
#define M4VENC_MALLOC(size)
malloc
(size)
/ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/new.delete/new.delete.array/
new_array_nothrow_replace.pass.cpp
23
return std::
malloc
(s);
new_array_replace.pass.cpp
23
return std::
malloc
(s);
Completed in 1296 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>