OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:outputbuf
(Results
1 - 8
of
8
) sorted by null
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterTest.java
70
byte
outPutBuf
[] = new byte[50];
79
x += defl.deflate(
outPutBuf
);
82
.deflate(
outPutBuf
));
91
infl.setInput(
outPutBuf
);
112
byte
outPutBuf
[] = new byte[50];
116
int length =
outPutBuf
.length - 1;
123
x += defl.deflate(
outPutBuf
, offSet, length);
126
outPutBuf
, offSet, length));
135
infl.setInput(
outPutBuf
, offSet, length);
153
outPutBuf
= new byte[100]
[
all
...]
InflaterTest.java
135
byte
outPutBuf
[] = new byte[500];
142
x += deflate.deflate(
outPutBuf
, x,
outPutBuf
.length - x);
146
x = x + deflate.deflate(
outPutBuf
, x,
outPutBuf
.length - x);
153
inflate.setInput(
outPutBuf
);
163
"the total byte in
outPutBuf
did not equal the byte returned in getTotalIn",
192
byte
outPutBuf
[] = new byte[500];
199
x += deflate.deflate(
outPutBuf
, x,
outPutBuf
.length - x)
[
all
...]
DeflaterOutputStreamTest.java
63
private byte
outPutBuf
[] = new byte[500];
73
x += deflate.deflate(
outPutBuf
, x,
outPutBuf
.length - x);
77
x = x + deflate.deflate(
outPutBuf
, x,
outPutBuf
.length - x);
122
dos.write(
outPutBuf
);
InflaterInputStreamTest.java
37
byte
outPutBuf
[] = new byte[500];
/external/webkit/Source/WebCore/xml/
XSLTProcessorLibxslt.cpp
194
xmlOutputBufferPtr
outputBuf
= xmlAllocOutputBuffer(0);
195
if (!
outputBuf
)
199
outputBuf
->context = &resultVector;
200
outputBuf
->writecallback = writeToVector;
202
int retval = xsltSaveResultTo(
outputBuf
, resultDoc, sheet);
203
xmlOutputBufferClose(
outputBuf
);
/external/webkit/Source/WebCore/platform/audio/
EqualPowerPanner.h
38
virtual void pan(double azimuth, double elevation, AudioBus* inputBus, AudioBus*
outputBuf
, size_t framesToProcess);
/external/quake/quake/src/QW/server/
sv_send.c
38
char
outputbuf
[8000];
variable
60
memcpy (send+5,
outputbuf
, strlen(
outputbuf
)+1);
66
ClientReliableWrite_Begin (host_client, svc_print, strlen(
outputbuf
)+3);
68
ClientReliableWrite_String (host_client,
outputbuf
);
72
outputbuf
[0] = 0;
87
outputbuf
[0] = 0;
118
if (strlen (msg) + strlen(
outputbuf
) > sizeof(
outputbuf
) - 1)
120
strcat (
outputbuf
, msg)
[
all
...]
/frameworks/base/media/libstagefright/codecs/amrwbenc/SampleCode/
AMRWB_E_SAMPLE.c
33
unsigned char
OutputBuf
[OUTPUT_SIZE];
98
unsigned char *outBuf =
OutputBuf
;
216
fwrite(
OutputBuf
, 1, outData.Length + size1, fdst);
Completed in 149 milliseconds