OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:malloc
(Results
976 - 1000
of
6596
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/external/chromium_org/third_party/tcmalloc/vendor/src/
malloc_extension.cc
194
// The current
malloc
extension object.
213
// When running under valgrind, our custom
malloc
is replaced with
214
// valgrind's one and
malloc
extensions will not work. (Note:
216
//
malloc
that is really being run, before calling Register. This
291
"This
malloc
implementation does not support sampling.\n"
314
"This
malloc
implementation does not support "
/external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp
1
// MallocOverflowSecurityChecker.cpp - Check for
malloc
overflows -*- C++ -*-=//
12
// code looks like '
malloc
(n * 4)', and an attacker can make 'n' be
100
// We've found the right structure of
malloc
argument, now save
217
BR.EmitBasicReport(D, "
malloc
() size overflow", categories::UnixAPI,
232
// A list of variables referenced in possibly overflowing
malloc
operands.
252
if (FnInfo->isStr ("
malloc
") || FnInfo->isStr ("_MALLOC")) {
/external/compiler-rt/lib/asan/
asan_malloc_mac.cc
12
// Mac-specific
malloc
interception.
21
#include <
malloc
/
malloc
.h>
99
// Call the system
malloc
's implementation for both external and our zones,
104
INTERCEPTOR(void *,
malloc
, size_t size) {
334
asan_zone.
malloc
= &mz_malloc;
/external/compiler-rt/lib/asan/tests/
asan_mem_test.cc
19
T *array = Ident((T*)
malloc
(size));
117
assert(0 && "Did not find two adjacent
malloc
-ed pointers");
125
T *src = Ident((T*)
malloc
(size));
126
T *dest = Ident((T*)
malloc
(size));
168
T *big_src = Ident((T*)
malloc
(size * 2));
169
T *big_dest = Ident((T*)
malloc
(size * 2));
/external/giflib/
gifalloc.c
50
Object = (ColorMapObject *)
malloc
(sizeof(ColorMapObject));
226
*ExtensionBlocks=(ExtensionBlock *)
malloc
(sizeof(ExtensionBlock));
239
ep->Bytes = (GifByteType *)
malloc
(ep->ByteCount);
317
GifFile->SavedImages = (SavedImage *)
malloc
(sizeof(SavedImage));
349
sp->RasterBits = (unsigned char *)
malloc
(sizeof(GifPixelType) *
362
sp->ExtensionBlocks = (ExtensionBlock *)
malloc
(
/external/llvm/cmake/
config-ix.cmake
46
check_include_file(
malloc
.h HAVE_MALLOC_H)
47
check_include_file(
malloc
/
malloc
.h HAVE_MALLOC_MALLOC_H)
154
check_symbol_exists(mallinfo
malloc
.h HAVE_MALLINFO)
155
check_symbol_exists(malloc_zone_statistics
malloc
/
malloc
.h
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_config.h
359
h = (__itt_thread_info*)
malloc
(sizeof(__itt_thread_info)); \
376
h = (__itt_thread_info*)
malloc
(sizeof(__itt_thread_info)); \
393
h = (__itt_domain*)
malloc
(sizeof(__itt_domain)); \
409
h = (__itt_domain*)
malloc
(sizeof(__itt_domain)); \
425
h = (__itt_string_handle*)
malloc
(sizeof(__itt_string_handle)); \
440
h = (__itt_string_handle*)
malloc
(sizeof(__itt_string_handle)); \
/external/valgrind/main/memcheck/tests/x86-linux/
scalar.stderr.exp
32
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
52
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
68
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
102
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
118
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
134
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
139
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
151
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
171
Address 0x........ is not stack'd,
malloc
'd or (recently) free'd
183
Address 0x........ is not stack'd,
malloc
'd or (recently) free'
[
all
...]
/external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c
111
self =
malloc
(sizeof(BinaryDelayEstimator));
126
self->mean_bit_counts =
malloc
(history_size * sizeof(int32_t));
132
self->bit_counts =
malloc
(history_size * sizeof(int32_t));
139
self->binary_far_history =
malloc
(history_size * sizeof(uint32_t));
145
self->binary_near_history =
malloc
(self->near_history_size *
152
self->far_bit_counts =
malloc
(history_size * sizeof(int));
/external/bison/lib/
stdlib.in.h
271
rely on GNU or POSIX semantics for
malloc
and realloc (for example,
272
by never specifying a zero size), so it does not need
malloc
or
278
# undef
malloc
279
# define
malloc
rpl_malloc
281
_GL_FUNCDECL_RPL (
malloc
, void *, (size_t size));
282
_GL_CXXALIAS_RPL (
malloc
, void *, (size_t size));
284
_GL_CXXALIAS_SYS (
malloc
, void *, (size_t size));
286
_GL_CXXALIASWARN (
malloc
);
288
# undef
malloc
289
/* Assume
malloc
is always declared. *
[
all
...]
dirname-lgpl.c
60
Return the leading directories part of FILE, allocated with
malloc
.
78
char *dir =
malloc
(length + append_dot + 1);
obstack.c
66
/* If
malloc
were really smart, it would round addresses to DEFAULT_ALIGNMENT.
112
/* Define a macro that either calls functions with the traditional
malloc
/free
152
/* Default size is what GNU
malloc
can fit in a 4096-byte block. */
154
/* 12 is sizeof (mhead) and 4 is EXTRA from GNU
malloc
.
160
These number are irrelevant to the new GNU
malloc
. I suspect it is
199
/* Default size is what GNU
malloc
can fit in a 4096-byte block. */
201
/* 12 is sizeof (mhead) and 4 is EXTRA from GNU
malloc
.
207
These number are irrelevant to the new GNU
malloc
. I suspect it is
xmalloc.c
1
/* xmalloc.c --
malloc
with out of memory checking
41
void *p =
malloc
(n);
/external/chromium_org/third_party/sqlite/src/test/
malloc_common.tcl
12
# This file contains common code used by many different
malloc
tests
17
# If we did not compile with
malloc
testing enabled, then do nothing.
363
# -tclbody TCL script to run with
malloc
failure simulation.
364
# -sqlbody TCL script to run with
malloc
failure simulation.
369
# that if this condition occurs a
malloc
() call will return a
371
# the "BUGS" section of
malloc
(3).
385
set tn
malloc
-$tn
403
# If $::iRepeat is 0, then the
malloc
() failure is transient - it
405
# then the failure is persistent - once
malloc
() fails it keeps
445
# Now set the ${::n}th
malloc
() to fail and execute the -tclbody
[
all
...]
/bionic/libc/bionic/
libc_init_dynamic.cpp
78
// Hooks for the debug
malloc
and pthread libraries to let them know that we're starting up.
84
// A hook for the debug
malloc
library to let it know that we're shutting down.
/build/tools/fs_config/
fs_config.c
128
char* full_name = (char*)
malloc
(full_name_size);
130
perror("
malloc
");
/build/tools/rgb2565/
to565.c
48
int* error =
malloc
((width+2) * 3 * sizeof(int));
49
int* next_error =
malloc
((width+2) * 3 * sizeof(int));
/dalvik/vm/jdwp/
ExpandBuf.cpp
45
newBuf = (ExpandBuf*)
malloc
(sizeof(*newBuf));
46
newBuf->storage = (u1*)
malloc
(kInitialStorage);
/development/ndk/platforms/android-5/samples/hello-gl2/jni/
gl_code.cpp
68
char* buf = (char*)
malloc
(infoLen);
107
char* buf = (char*)
malloc
(bufLength);
/development/tools/line_endings/
line_endings.c
62
Node* root =
malloc
(sizeof(Node));
67
node->next =
malloc
(sizeof(Node));
/external/blktrace/btt/
misc.c
120
struct file_info *fip =
malloc
(sizeof(*fip));
129
struct buf_info *bip =
malloc
(sizeof(*bip));
/external/bsdiff/
bsdiff.c
219
that we never try to
malloc
(0) and get a NULL pointer */
222
((old=
malloc
(oldsize+1))==NULL) ||
227
if(((I=
malloc
((oldsize+1)*sizeof(off_t)))==NULL) ||
228
((V=
malloc
((oldsize+1)*sizeof(off_t)))==NULL)) err(1,NULL);
235
that we never try to
malloc
(0) and get a NULL pointer */
238
((new=
malloc
(newsize+1))==NULL) ||
243
if(((db=
malloc
(newsize+1))==NULL) ||
244
((eb=
malloc
(newsize+1))==NULL)) err(1,NULL);
/external/chromium/crypto/
signature_verifier_win.cc
13
// Wrappers of
malloc
and free for CRYPT_DECODE_PARA, which requires the
16
return
malloc
(size);
/external/chromium_org/ppapi/api/
pp_array_output.idl
63
* output->data =
malloc
(count * size);
64
* if (!output->data) // Be careful to set size properly on
malloc
failure.
/external/chromium_org/ppapi/c/
pp_array_output.h
85
* output->data =
malloc
(count * size);
86
* if (!output->data) // Be careful to set size properly on
malloc
failure.
Completed in 1436 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>