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
4430
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/llvm/cmake/
config-ix.cmake
50
check_include_file(
malloc
.h HAVE_MALLOC_H)
51
check_include_file(
malloc
/
malloc
.h HAVE_MALLOC_MALLOC_H)
117
check_symbol_exists(mallinfo
malloc
.h HAVE_MALLINFO)
118
check_symbol_exists(malloc_zone_statistics
malloc
/
malloc
.h
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
tokens.c
63
* Copy a string to a
malloc
'ed block and convert it into something suitable
76
str = (char *)
malloc
(len + 1);
99
lBlock = (TokenBlock *)
malloc
(sizeof(TokenBlock) + 256);
168
pTok = (TokenStream *)
malloc
(sizeof(TokenStream));
361
TokenInputSrc *in =
malloc
(sizeof(TokenInputSrc));
390
UngotToken *t =
malloc
(sizeof(UngotToken));
/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));
/system/extras/ext4_utils/
img2simg.c
246
if ((copy_buf =
malloc
(COPY_BUF_SIZE)) == 0)
247
error_exit("
malloc
copy buffer: %s", strerror(errno));
250
if ((out_fmt =
malloc
(sizeof("%s") + strlen(suffix))) == 0)
251
error_exit("
malloc
format buffer: %s", strerror(errno));
260
if ((out_path =
malloc
(i + 1)) == 0)
261
error_exit("
malloc
output path buffer: %s", strerror(errno));
/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/dbus/dbus/
dbus-memory.c
135
_dbus_verbose ("Will fail
malloc
every %d times\n", fail_nth);
148
_dbus_verbose ("Will use
malloc
guards\n");
160
_dbus_verbose ("Will backtrace on failing a
malloc
\n");
224
* Gets the number of failures we'll have when the fail
malloc
291
* Get the number of outstanding
malloc
()'d blocks.
321
return "
malloc
";
329
_dbus_assert_not_reached ("Invalid
malloc
block source ID");
441
*
malloc
(). Guaranteed to return #NULL if bytes is zero
459
_dbus_verbose (" FAILING
malloc
of %ld bytes\n", (long) bytes);
473
block =
malloc
(bytes + GUARD_EXTRA_SIZE)
[
all
...]
dbus-mempool.c
36
* the overhead of a
malloc
block for each small object, speed is
78
* DBusMemBlock object represents a single
malloc
()-returned
104
DBusMemBlock *blocks; /**< blocks of memory from
malloc
() */
120
* avoiding per-
malloc
-block memory overhead when allocating a lot of
122
* faster than calling
malloc
() also.
293
*
malloc
here for purposes of failed alloc simulation.
414
_dbus_verbose ("
malloc
\n");
486
_dbus_verbose (" zeroed
malloc
\n");
/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/bison/lib/
obstack.c
78
/* If
malloc
were really smart, it would round addresses to DEFAULT_ALIGNMENT.
124
/* Define a macro that either calls functions with the traditional
malloc
/free
164
/* Default size is what GNU
malloc
can fit in a 4096-byte block. */
166
/* 12 is sizeof (mhead) and 4 is EXTRA from GNU
malloc
.
172
These number are irrelevant to the new GNU
malloc
. I suspect it is
211
/* Default size is what GNU
malloc
can fit in a 4096-byte block. */
213
/* 12 is sizeof (mhead) and 4 is EXTRA from GNU
malloc
.
219
These number are irrelevant to the new GNU
malloc
. I suspect it is
/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/e2fsprogs/debugfs/
icheck.c
73
bw.barray =
malloc
(sizeof(struct block_info) * argc);
81
block_buf =
malloc
(current_fs->blocksize * 3);
/external/e2fsprogs/e2fsck/
argv_parse.c
52
buf =
malloc
(strlen(in_buf)+1);
116
argv =
malloc
(sizeof(char *));
emptydir.c
46
edi =
malloc
(sizeof(struct empty_dir_info_struct));
184
edi->block_buf =
malloc
(ctx->fs->blocksize * 3);
/external/e2fsprogs/intl/
textdomain.c
106
/* If the following
malloc
fails `_nl_current_default_domain'
113
new_domain = (char *)
malloc
(len);
/external/harfbuzz/src/
harfbuzz-thai.c
76
cstr = (char *)
malloc
(len*sizeof(char) + 1);
82
break_positions = (int *)
malloc
(numbreaks * sizeof(int));
/external/icu4c/test/perf/strsrchperf/
strsrchperf.cpp
42
UChar* temp = (UChar*)
malloc
(sizeof(UChar)*(pttrnLen));
61
UChar* temp = (UChar*)
malloc
(sizeof(UChar)*(pttrnLen));
/external/icu4c/test/perf/ucnvavailperf/
ucnvavailperf.cpp
39
#include <
malloc
.h>
53
size_t *p = (size_t *)
malloc
(size + sizeof(size_t));
/external/libmtp/examples/
thumb.c
85
imagedata =
malloc
(filesize * sizeof(uint16_t));
110
thumb->data =
malloc
(sizeof(uint16_t) * filesize);
/external/libmtp/src/
ptp-pack.c
223
retcopy =
malloc
(plen);
239
*array =
malloc
(n*sizeof(uint32_t));
252
*data =
malloc
((arraylen+1)*sizeof(uint32_t));
265
*array =
malloc
(n*sizeof(uint16_t));
465
oidata=
malloc
(PTP_oi_MaxLen);
621
val->a.v =
malloc
(sizeof(val->a.v[0])*n); \
761
dpd->FORM.Enum.SupportedValue =
malloc
(N*sizeof(dpd->FORM.Enum.SupportedValue[0]));
830
opd->FORM.Enum.SupportedValue =
malloc
(N*sizeof(opd->FORM.Enum.SupportedValue[0]));
870
dpv=
malloc
(size);
875
dpv=
malloc
(size)
[
all
...]
/external/libsepol/src/
iface_record.c
32
(sepol_iface_key_t *)
malloc
(sizeof(sepol_iface_key_t));
93
(sepol_iface_t *)
malloc
(sizeof(sepol_iface_t));
Completed in 3814 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>