HomeSort by: relevance | last modified time | path
    Searched refs:in_used (Results 1 - 5 of 5) sorted by relevancy

  /src/external/public-domain/xz/dist/src/liblzma/common/
block_encoder.c 67 const size_t in_used = *in_pos - in_start; local
77 coder->uncompressed_size += in_used;
81 if (in_used > 0)
83 in + in_start, in_used);
index_decoder.c 205 // In such a case we had no input and thus in_used == 0.
207 const size_t in_used = *in_pos - in_start; local
208 if (in_used > 0)
210 in_used, coder->crc32);
index_hash.c 332 // In such a case we had no input and thus in_used == 0.
334 const size_t in_used = *in_pos - in_start; local
335 if (in_used > 0)
337 in_used, index_hash->crc32);
block_decoder.c 90 const size_t in_used = *in_pos - in_start; local
95 coder->compressed_size += in_used;
  /src/external/public-domain/xz/dist/src/liblzma/lzma/
lzma2_decoder.c 173 const size_t in_used = *in_pos - in_start; local
174 if (in_used > coder->compressed_size)
177 coder->compressed_size -= in_used;

Completed in 18 milliseconds