OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newBuf
(Results
1 - 12
of
12
) sorted by null
/external/icu4c/i18n/
decnumstr.cpp
88
char *
newBuf
= fText.resize(neededSize, fText.getCapacity());
89
if (
newBuf
== NULL) {
94
U_ASSERT(fText.getAlias() ==
newBuf
);
ucol.cpp
[
all
...]
/dalvik/vm/jdwp/
ExpandBuf.cpp
43
ExpandBuf*
newBuf
;
45
newBuf
= (ExpandBuf*) malloc(sizeof(*
newBuf
));
46
newBuf
->storage = (u1*) malloc(kInitialStorage);
47
newBuf
->curLen = 0;
48
newBuf
->maxLen = kInitialStorage;
50
return
newBuf
;
/system/core/libcutils/
open_memstream.c
107
char*
newBuf
= (char*) realloc(*stream->bufp, newSize);
108
if (
newBuf
== NULL)
111
*stream->bufp =
newBuf
;
/libcore/luni/src/main/java/java/io/
ByteArrayOutputStream.java
91
byte[]
newbuf
= new byte[(count + i) * 2];
92
System.arraycopy(buf, 0,
newbuf
, 0, count);
93
buf =
newbuf
;
156
char[]
newBuf
= new char[size()];
157
for (int i = 0; i <
newBuf
.length; i++) {
158
newBuf
[i] = (char) (((hibyte & 0xff) << 8) | (buf[i] & 0xff));
160
return new String(
newBuf
);
/dalvik/tools/hprof-conv/
HprofConv.c
111
ExpandBuf*
newBuf
= (ExpandBuf*) malloc(sizeof(ExpandBuf));
112
if (
newBuf
== NULL)
114
newBuf
->storage = (unsigned char*) malloc(kInitialSize);
115
newBuf
->curLen = 0;
116
newBuf
->maxLen = kInitialSize;
118
return
newBuf
;
/libcore/luni/src/main/java/java/util/
Properties.java
296
char[]
newBuf
= new char[buf.length * 2];
297
System.arraycopy(buf, 0,
newBuf
, 0, offset);
298
buf =
newBuf
;
/bootable/recovery/minzip/
Zip.c
875
char *
newBuf
;
878
newBuf
= (char *)realloc(helper->buf, needLen);
879
if (
newBuf
== NULL) {
882
helper->buf =
newBuf
;
[
all
...]
/dalvik/vm/
CheckJni.cpp
[
all
...]
/external/expat/lib/
xmlparse.c
[
all
...]
/prebuilt/common/commons-compress/
commons-compress-1.0.jar
/prebuilt/common/ant/
ant.jar
Completed in 1557 milliseconds