/external/lz4/programs/ |
D | fuzzer.c | 283 char* compressedBuffer; in FUZ_test() local 307 compressedBuffer = (char*)malloc(LZ4_compressBound(FUZ_MAX_BLOCK_SIZE)); in FUZ_test() 329 LZ4_compress_continue(&LZ4dict, block, compressedBuffer, blockSize); in FUZ_test() 331 LZ4_compress_continue(&LZ4dict, block, compressedBuffer, blockSize); in FUZ_test() 333 LZ4_compress_continue(&LZ4dict, block, compressedBuffer, blockSize); in FUZ_test() 362 ret = LZ4_compressHC(block, compressedBuffer, blockSize); in FUZ_test() 368 ret = LZ4_compressHC_withStateHC(stateLZ4HC, block, compressedBuffer, blockSize); in FUZ_test() 373 ret = LZ4_compress_withState(stateLZ4, block, compressedBuffer, blockSize); in FUZ_test() 378 ret = LZ4_compress(block, compressedBuffer, blockSize); in FUZ_test() 388 ret = LZ4_decompress_fast(compressedBuffer, decodedBuffer, blockSize); in FUZ_test() [all …]
|
D | frametest.c | 202 void* compressedBuffer; in basicTests() local 212 compressedBuffer = malloc(LZ4F_compressFrameBound(COMPRESSIBLE_NOISE_LENGTH, NULL)); in basicTests() 220 …cSize = LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuffer, te… in basicTests() 230 BYTE* ip = (BYTE*)compressedBuffer; in basicTests() 231 BYTE* const iend = (BYTE*)compressedBuffer + cSize; in basicTests() 238 …errorCode = LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compressedBuffer, &compressed… in basicTests() 265 …cSize = LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNBuffer, … in basicTests() 271 …cSize = LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNBuffer, … in basicTests() 278 …cSize = LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNBuffer, … in basicTests() 288 BYTE* ip = (BYTE*)compressedBuffer; in basicTests() [all …]
|
D | bench.c | 119 char* compressedBuffer; member 274 char* compressedBuffer; int compressedBuffSize; in BMK_benchFile() local 302 compressedBuffer = (char*)malloc((size_t )compressedBuffSize); in BMK_benchFile() 305 if (!orig_buff || !compressedBuffer) in BMK_benchFile() 309 free(compressedBuffer); in BMK_benchFile() 320 char* out = compressedBuffer; in BMK_benchFile() 326 chunkP[i].compressedBuffer = out; out += maxCompressedChunkSize; in BMK_benchFile() 340 free(compressedBuffer); in BMK_benchFile() 365 …{ size_t i; for (i=0; i<benchedSize; i++) compressedBuffer[i]=(char)i; } /* warmimg up memory … in BMK_benchFile() 374 …mpP.compressionFunction(chunkP[chunkNb].origBuffer, chunkP[chunkNb].compressedBuffer, chunkP[chunk… in BMK_benchFile() [all …]
|
D | fullbench.c | 132 char* compressedBuffer; member 522 chunkP[i].compressedBuffer = out; out += maxCompressedChunkSize; in fullSpeedBench() 573 …e = compressionFunction(chunkP[chunkNb].origBuffer, chunkP[chunkNb].compressedBuffer, chunkP[chunk… in fullSpeedBench() 610 chunkP[i].compressedBuffer = out; out += maxCompressedChunkSize; in fullSpeedBench() 616 …ssedSize = LZ4_compress(chunkP[chunkNb].origBuffer, chunkP[chunkNb].compressedBuffer, chunkP[chunk… in fullSpeedBench() 668 …int decodedSize = decompressionFunction(chunkP[chunkNb].compressedBuffer, chunkP[chunkNb].origBuff… in fullSpeedBench()
|
/external/skia/src/utils/ |
D | SkTextureCompressor.cpp | 164 SkBlitter* CreateBlitterForFormat(int width, int height, void* compressedBuffer, in CreateBlitterForFormat() argument 168 return CreateLATCBlitter(width, height, compressedBuffer, allocator); in CreateBlitterForFormat() 171 return CreateR11EACBlitter(width, height, compressedBuffer, allocator); in CreateBlitterForFormat() 174 return CreateASTCBlitter(width, height, compressedBuffer, allocator); in CreateBlitterForFormat()
|
D | SkTextureCompressor.h | 99 SkBlitter* CreateBlitterForFormat(int width, int height, void* compressedBuffer,
|
D | SkTextureCompressor_Blitter.h | 65 SkTCompressedAlphaBlitter(int width, int height, void *compressedBuffer) in SkTCompressedAlphaBlitter() argument 79 , fBuffer(compressedBuffer) in SkTCompressedAlphaBlitter()
|
/external/dng_sdk/source/ |
D | dng_read_image.cpp | 2168 AutoPtr<dng_memory_block> &compressedBuffer, in ReadTile() argument 2301 if (!expander.Expand (compressedBuffer->Buffer_uint8 (), in ReadTile() 2314 dng_stream subStream (compressedBuffer->Buffer_uint8 (), in ReadTile() 2333 (const Bytef *) compressedBuffer->Buffer (), in ReadTile() 2543 compressedBuffer.Get () ? compressedBuffer->Buffer_uint8 () : NULL)) in ReadTile() 2590 compressedBuffer.Get () ? compressedBuffer->Buffer_uint8 () : NULL)) in ReadTile() 2804 AutoPtr<dng_memory_block> compressedBuffer; in Process() local 2810 compressedBuffer.Reset (fHost.Allocate (fCompressedSize)); in Process() 2849 : compressedBuffer->Buffer (), in Process() 2861 printer.Process (compressedBuffer->Buffer (), in Process() [all …]
|
D | dng_jpeg_image.cpp | 97 AutoPtr<dng_memory_block> compressedBuffer; in Process() local 142 compressedBuffer, in Process()
|
D | dng_read_image.h | 172 AutoPtr<dng_memory_block> &compressedBuffer,
|
D | dng_image_writer.cpp | 3715 AutoPtr<dng_memory_block> &compressedBuffer) in WriteData() argument 3794 uint8 *dBuffer = compressedBuffer->Buffer_uint8 (); in WriteData() 3811 uLongf dCount = compressedBuffer->LogicalSize (); in WriteData() 3840 if (dBytes > compressedBuffer->LogicalSize ()) in WriteData() 3866 temp.fData = compressedBuffer->Buffer (); in WriteData() 4173 AutoPtr<dng_memory_block> &compressedBuffer, in WriteTile() argument 4299 compressedBuffer); in WriteTile() 4392 AutoPtr<dng_memory_block> compressedBuffer; in Process() local 4399 compressedBuffer.Reset (fHost.Allocate (fCompressedSize)); in Process() 4455 compressedBuffer, in Process() [all …]
|
D | dng_image_writer.h | 1226 AutoPtr<dng_memory_block> &compressedBuffer); 1234 AutoPtr<dng_memory_block> &compressedBuffer,
|
/external/deqp/framework/qphelper/ |
D | qpTestLog.c | 848 Buffer compressedBuffer; in qpTestLog_writeImage() local 860 Buffer_init(&compressedBuffer); in qpTestLog_writeImage() 876 deBool compressOk = compressImagePNG(&compressedBuffer, imageFormat, width, height, stride, data); in qpTestLog_writeImage() 879 writeDataPtr = compressedBuffer.data; in qpTestLog_writeImage() 880 writeDataBytes = compressedBuffer.size; in qpTestLog_writeImage() 904 if (Buffer_resize(&compressedBuffer, (size_t)(packedStride*height))) in qpTestLog_writeImage() 908 …memcpy(&compressedBuffer.data[packedStride*row], &((const deUint8*)data)[row*stride], (size_t)(pix… in qpTestLog_writeImage() 913 Buffer_deinit(&compressedBuffer); in qpTestLog_writeImage() 930 Buffer_deinit(&compressedBuffer); in qpTestLog_writeImage() 954 Buffer_deinit(&compressedBuffer); in qpTestLog_writeImage() [all …]
|
/external/lzma/Java/SevenZip/ |
D | LzmaBench.java | 335 byte[] compressedBuffer = new byte[kCompressedBufferSize]; in LzmaBenchmark() 336 MyOutputStream compressedStream = new MyOutputStream(compressedBuffer); in LzmaBenchmark() 351 inputCompressedStream = new MyInputStream(compressedBuffer, compressedSize); in LzmaBenchmark()
|