Searched refs:kBufSize (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/aapt/
H A DZipFile.cpp747 const size_t kBufSize = 32768; local
758 inBuf = new unsigned char[kBufSize];
759 outBuf = new unsigned char[kBufSize];
775 zstream.avail_out = kBufSize;
802 ALOGV("+++ reading %d bytes\n", (int)kBufSize);
804 getSize = size > kBufSize ? kBufSize : size;
809 getSize = fread(inBuf, 1, kBufSize, srcFp);
815 if (getSize < kBufSize) {
841 (zerr == Z_STREAM_END && zstream.avail_out != (uInt) kBufSize))
[all...]
/frameworks/compile/mclinker/utils/gtest/src/
H A Dgtest-all.cpp2656 const DWORD kBufSize = 4096; // String::Format can't exceed this length.
2658 char error_text[kBufSize] = { '\0' };
2664 kBufSize, // buf size

Completed in 87 milliseconds