Lines Matching refs:size
164 public int size()
176 public MyInputStream(byte[] buffer, int size)
179 _size = size;
213 static int GetLogSize(int size)
217 if (size <= ((1) << i) + (j << (i - kSubBits)))
236 static long GetCompressRating(int dictionarySize, long elapsedTime, long size)
240 long numCommands = (long)(size) * numCommandsForOne;
278 long size,
281 long speed = MyMultDiv64(size, elapsedTime);
286 rating = GetDecompressRating(elapsedTime, size, secondSize);
288 rating = GetCompressRating(dictionarySize, elapsedTime, size);
298 System.out.println("\nError: dictionary size for benchmark must be >= 18 (256 KB)");
307 throw new Exception("Incorrect dictionary size");
350 compressedSize = compressedStream.size();
353 else if (compressedSize != compressedStream.size())