Searched refs:decodeSize (Results 1 – 2 of 2) sorted by relevance
493 int decodeSize; in decodeLegacyStream() local511 decodeSize = LZ4_decompress_safe(in_buff, out_buff, blockSize, LEGACY_BLOCKSIZE); in decodeLegacyStream()512 if (decodeSize < 0) EXM_THROW(52, "Decoding Failed ! Corrupted input detected !"); in decodeLegacyStream()513 filesize += decodeSize; in decodeLegacyStream()516 sizeCheck = fwrite(out_buff, 1, decodeSize, foutput); in decodeLegacyStream()517 …if (sizeCheck != (size_t)decodeSize) EXM_THROW(53, "Write error : cannot write decoded block into … in decodeLegacyStream()
167 private final int decodeSize; field in Base64Codec333 this.decodeSize = this.encodeSize - 1; in Base64Codec()546 if (buffer == null || buffer.length - pos < decodeSize) { in decode()