Lines Matching refs:orig_buff
358 char* orig_buff = NULL; in fullSpeedBench() local
386 orig_buff = (char*) malloc(benchedSize); in fullSpeedBench()
391 if(!chunkP || !orig_buff || !compressed_buff) { in fullSpeedBench()
394 free(orig_buff); in fullSpeedBench()
402 readSize = fread(orig_buff, 1, benchedSize, inFile); in fullSpeedBench()
407 free(orig_buff); in fullSpeedBench()
414 crcOriginal = XXH32(orig_buff, benchedSize,0); in fullSpeedBench()
438 char* in = orig_buff; in fullSpeedBench()
524 char* in = orig_buff; in fullSpeedBench()
564 … errorCode = LZ4F_compressFrame(compressed_buff, compressedBuffSize, orig_buff, benchedSize, NULL); in fullSpeedBench()
567 free(orig_buff); in fullSpeedBench()
580 …{ size_t i; for (i=0; i<benchedSize; i++) orig_buff[i]=0; } /* zeroing source area, for CRC ch… in fullSpeedBench()
613 crcDecoded = XXH32(orig_buff, (int)benchedSize, 0); in fullSpeedBench()
623 free(orig_buff); in fullSpeedBench()