HomeSort by relevance Sort by last modified time
    Searched refs:LZF_CHUNK_SIZE (Results 1 - 3 of 3) sorted by null

  /frameworks/base/opengl/libs/GLES2_dbg/src/
dbgcontext.cpp 142 lzf_buf = (char *)malloc(LZF_CHUNK_SIZE);
146 for (unsigned int i = 0; i < in_len; i += LZF_CHUNK_SIZE) {
147 uint32_t chunkSize = LZF_CHUNK_SIZE;
148 if (i + LZF_CHUNK_SIZE > in_len)
151 lzf_buf, LZF_CHUNK_SIZE);
156 else // compressed chunk bigger than LZF_CHUNK_SIZE (and uncompressed)
226 lzf_buf = (char *)malloc(LZF_CHUNK_SIZE);
234 lzf_buf = (char *)malloc(LZF_CHUNK_SIZE);
237 return LZF_CHUNK_SIZE;
header.h 76 static const unsigned int LZF_CHUNK_SIZE = 256 * 1024;
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_main.cpp 109 const unsigned int bufferSize = dbg.LZF_CHUNK_SIZE * 4 + 33;

Completed in 85 milliseconds