Lines Matching refs:compressed
1006 char compressed[]) in hufCompress() argument
1018 char *tableStart = compressed + 20; in hufCompress()
1027 writeUInt (compressed, im); in hufCompress()
1028 writeUInt (compressed + 4, iM); in hufCompress()
1029 writeUInt (compressed + 8, tableLength); in hufCompress()
1030 writeUInt (compressed + 12, nBits); in hufCompress()
1031 writeUInt (compressed + 16, 0); // room for future extensions in hufCompress()
1033 return dataStart + dataLength - compressed; in hufCompress()
1038 hufUncompress (const char compressed[], in hufUncompress() argument
1051 int im = readUInt (compressed); in hufUncompress()
1052 int iM = readUInt (compressed + 4); in hufUncompress()
1054 int nBits = readUInt (compressed + 12); in hufUncompress()
1059 const char *ptr = compressed + 20; in hufUncompress()
1066 hufUnpackEncTable (&ptr, nCompressed - (ptr - compressed), im, iM, freq); in hufUncompress()
1070 if (nBits > 8 * (nCompressed - (ptr - compressed))) in hufUncompress()