Searched defs:outBuf (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tests/CoreTests/android/core/
H A DDeflateTest.java128 private void compress(Deflater deflater, byte[] inBuf, byte[] outBuf) { argument
156 compCount = deflater.deflate(outBuf, outPosn, LOCAL_BUF_SIZE);
164 * Expand data from "inBuf" to "outBuf". Uses a small window to better
168 byte[] outBuf) throws DataFormatException {
192 compCount = inflater.inflate(outBuf, outPosn, LOCAL_BUF_SIZE);
167 expand(Inflater inflater, byte[] inBuf, int inCount, byte[] outBuf) argument
/frameworks/base/media/jni/
H A Dandroid_media_AmrInputStream.cpp105 jbyte outBuf[aMaxOutputBufferSize]; local
108 out.iBitStreamBuffer = (uint8*)outBuf;
137 outBuf[0] = (outBuf[0] << 3) | 0x4;
140 env->SetByteArrayRegion(amr, amrOffset, length, outBuf);
/frameworks/base/libs/utils/
H A DZipFileRO.cpp575 /*static*/ bool ZipFileRO::inflateBuffer(void* outBuf, const void* inBuf, argument
591 zstream.next_out = (Bytef*) outBuf;
/frameworks/base/tools/aapt/
H A DZipFile.cpp749 unsigned char* outBuf = NULL; local
759 outBuf = new unsigned char[kBufSize];
760 if (inBuf == NULL || outBuf == NULL) {
774 zstream.next_out = outBuf;
843 LOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
844 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
845 (size_t)(zstream.next_out - outBuf))
848 (int) (zstream.next_out - outBuf));
852 zstream.next_out = outBuf;
[all...]

Completed in 165 milliseconds