OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:malloc
(Results
1276 - 1300
of
2813
) sorted by null
<<
51
52
53
54
55
56
57
58
59
60
>>
/ndk/sources/host-tools/make-3.81/
misc.c
334
/* Like
malloc
but get fatal error if memory is exhausted. */
347
char *result = (char *)
malloc
(size ? size : 1);
362
result = ptr ? realloc (ptr, size) :
malloc
(size);
377
result = (char *)
malloc
(strlen (ptr) + 1);
/ndk/sources/host-tools/nawk-20071023/
lex.c
176
if (buf == 0 && (buf = (char *)
malloc
(bufsize)) == NULL)
364
if (buf == 0 && (buf = (char *)
malloc
(bufsz)) == NULL)
511
if (buf == 0 && (buf = (char *)
malloc
(bufsz)) == NULL)
/packages/inputmethods/PinyinIME/jni/share/
dictlist.cpp
52
buf_ = static_cast<char16*>(
malloc
(buf_size * sizeof(char16)));
58
scis_hz_ = static_cast<char16*>(
malloc
(scis_num_ * sizeof(char16)));
63
(
malloc
(scis_num_ * sizeof(SpellingId)));
/system/core/adb/
services.c
241
sti =
malloc
(sizeof(stinfo));
385
sti =
malloc
(sizeof(stinfo));
530
struct state_info* sinfo =
malloc
(sizeof(struct state_info));
/system/core/libsparse/
sparse_read.c
67
at =
malloc
(size + 1);
289
copybuf =
malloc
(COPY_BUF_SIZE);
362
uint32_t *buf =
malloc
(s->block_size);
/system/core/logwrapper/
logwrap.c
219
new_buf =
malloc
(BEGINNING_BUF_SIZE);
225
new_buf =
malloc
(ENDING_BUF_SIZE);
279
char * nbuf =
malloc
(a_buf->e_buf.alloc_len);
/system/security/softkeymaster/
keymaster_openssl.cpp
322
UniquePtr<uint8_t> key(static_cast<uint8_t*>(
malloc
(len)));
384
UniquePtr<uint8_t> signedDataPtr(reinterpret_cast<uint8_t*>(
malloc
(dataLength)));
440
UniquePtr<uint8_t> dataPtr(reinterpret_cast<uint8_t*>(
malloc
(signedDataLength)));
/external/chromium/third_party/libevent/
evdns.c
978
server_req =
malloc
(sizeof(struct server_request));
988
server_req->base.questions =
malloc
(sizeof(struct evdns_server_question *) * questions);
1001
q =
malloc
(sizeof(struct evdns_server_question) + namelen);
[
all
...]
/external/iproute2/misc/
ss.c
222
p =
malloc
(sizeof(struct user_ent) + str_len);
505
struct scache *c =
malloc
(sizeof(*c));
604
if ((c =
malloc
(sizeof(*c))) == NULL)
804
if (!(*bytecode=
malloc
(4))) abort();
826
if (!(ptr =
malloc
(len))) abort();
851
if (!(*bytecode=
malloc
(8))) abort();
859
if (!(*bytecode=
malloc
(8))) abort();
867
if (!(*bytecode=
malloc
(8))) abort();
875
if (!(*bytecode=
malloc
(8))) abort();
886
if (!(a =
malloc
(l1+l2))) abort()
[
all
...]
/bionic/libc/include/
wchar.h
37
#include <
malloc
.h>
/bionic/libc/netbsd/resolv/
res_random.c
222
ru_prf =
malloc
(sizeof(*ru_prf));
/bionic/libc/stdio/
findfp.c
83
data =
malloc
(sizeof(*g) + ALIGNBYTES + n * sizeof(FILE)
/bionic/libc/upstream-dlmalloc/
malloc.h
2
Default header file for
malloc
-2.8.x, written by Doug Lea
9
* If USE_DL_PREFIX is defined, it is assumed that
malloc
.c
14
file will be #included AFTER <
malloc
.h>. This is needed only if
17
INSTEAD of your system system <
malloc
.h>. At least on ANSI, all
54
#define dlmalloc
malloc
101
malloc
(size_t n)
106
If n is zero,
malloc
returns a minimum-sized chunk. (The minimum
119
allocated using
malloc
or a related routine such as realloc.
140
employs the equivalent of a
malloc
-copy-free sequence.
142
If p is null, realloc is equivalent to
malloc
[
all
...]
/bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c
69
resolved =
malloc
(PATH_MAX);
/bionic/libc/upstream-netbsd/libc/gen/
popen.c
107
if ((cur =
malloc
(sizeof(struct pid))) == NULL) {
/bionic/libthread_db/
libthread_db.c
43
agent = (td_thragent_t *)
malloc
(sizeof(td_thragent_t));
/bootable/recovery/applypatch/
bsdiff.c
245
*IP =
malloc
((oldsize+1) * sizeof(off_t));
246
V =
malloc
((oldsize+1) * sizeof(off_t));
252
if(((db=
malloc
(newsize+1))==NULL) ||
253
((eb=
malloc
(newsize+1))==NULL)) err(1,NULL);
bspatch.c
186
*new_data =
malloc
(*new_size);
freecache.c
79
*names =
malloc
(size * sizeof(char*));
/bootable/recovery/minzip/
DirUtil.c
74
char *cpath = (char *)
malloc
(pathLen + 2);
/bootable/recovery/mtdutils/
mounts.c
69
MountedVolume *volumes =
malloc
(numv * sizeof(*volumes));
122
/* %as is a gnu extension that
malloc
()s a string for each field.
/build/tools/atree/
fs.cpp
187
const char** args = (const char**)
malloc
(sizeof(const char*) * (num_args + 2));
/dalvik/vm/
PointerSet.cpp
60
pSet->list = (const void**)
malloc
(sizeof(void*) * initialSize);
/development/host/windows/usb/api/
adb_helper_routines.cpp
200
reinterpret_cast<PSP_DEVICE_INTERFACE_DETAIL_DATA>(
malloc
(required_len));
/development/ndk/platforms/android-3/include/
wchar.h
40
#include <
malloc
.h>
Completed in 1344 milliseconds
<<
51
52
53
54
55
56
57
58
59
60
>>