Lines Matching refs:decoded
30 stream->decoded = 0;
115 stream->decoded += length;
150 stream->decoded++;
172 stream->decoded += length;
347 /* returns the number of bytes decoded, < 0 if there was an error. Note that
360 if (btype == NO_COMP) decompress_none(&stream, dest + stream.decoded);
362 decompress_dynamic(&stream, dest + stream.decoded);
363 else if (btype == FIXED_COMP) decompress_fixed(&stream, dest + stream.decoded);
370 putLabeledWord("stream.decoded = ",stream.decoded);
374 return stream.error ? -stream.error : stream.decoded;