Lines Matching full:compressed
193 // of the corresponding code (in the compressed data)
447 // - runs of zeroes are compressed as follows:
755 char* out) // o: compressed output buffer
854 const char* in, // i : compressed input buffer
1006 char compressed[])
1018 char *tableStart = compressed + 20;
1027 writeUInt (compressed, im);
1028 writeUInt (compressed + 4, iM);
1029 writeUInt (compressed + 8, tableLength);
1030 writeUInt (compressed + 12, nBits);
1031 writeUInt (compressed + 16, 0); // room for future extensions
1033 return dataStart + dataLength - compressed;
1038 hufUncompress (const char compressed[],
1051 int im = readUInt (compressed);
1052 int iM = readUInt (compressed + 4);
1053 // int tableLength = readUInt (compressed + 8);
1054 int nBits = readUInt (compressed + 12);
1059 const char *ptr = compressed + 20;
1066 hufUnpackEncTable (&ptr, nCompressed - (ptr - compressed), im, iM, freq);
1070 if (nBits > 8 * (nCompressed - (ptr - compressed)))