Searched refs:getDictSize (Results 1 – 9 of 9) sorted by relevance
132 return 10 + getDictSize(dictSize) / 1024 in getMemoryUsage()136 private static int getDictSize(int dictSize) { in getDictSize() method in LZMAInputStream597 dictSize = getDictSize(dictSize); in initialize()599 dictSize = getDictSize((int)uncompSize); in initialize()601 lz = new LZDecoder(getDictSize(dictSize), presetDict, arrayCache); in initialize()
78 return 40 + COMPRESSED_SIZE_MAX / 1024 + getDictSize(dictSize) / 1024; in getMemoryUsage()81 private static int getDictSize(int dictSize) { in getDictSize() method in LZMA2InputStream173 this.lz = new LZDecoder(getDictSize(dictSize), presetDict, arrayCache); in LZMA2InputStream()
49 int dictSize = options.getDictSize(); in getMemoryUsage()66 int dictSize = options.getDictSize(); in LZMA2OutputStream()
26 int d = Math.max(options.getDictSize(), in LZMA2Encoder()
64 int dictSize = options.getDictSize(); in LZMAOutputStream()
254 public int getDictSize() { in getDictSize() method in LZMA2Options
55 final int dictSize = getDictSize(opts); in getOptionsAsProperties()68 private int getDictSize(final Object opts) { in getDictSize() method in LZMA2Decoder70 return ((LZMA2Options) opts).getDictSize(); in getDictSize()
58 int dictSize = options.getDictSize(); in getOptionsAsProperties()
37 options.setDictSize(Math.min(options.getDictSize(), in main()