Home | History | Annotate | Download | only in xz-embedded

Lines Matching defs:in

26 /* In Linux, this is used to make extern functions static when needed. */
66 * return code is possible only in multi-call mode
70 * is still possible in multi-call mode by simply
74 * which is not used in the kernel. Unsupported
85 * only in multi-call mode (XZ_PREALLOC or
91 * compression options. In the decoder this means
99 * In multi-call mode, XZ_BUF_ERROR is returned when two consecutive calls
106 * In single-call mode, XZ_BUF_ERROR is returned only when the output buffer
107 * is too small or the compressed input is corrupt in a way that makes the
126 * @in: Beginning of the input buffer. This may be NULL if and only
128 * @in_pos: Current position in the input buffer. This must not exceed
133 * @out_pos: Current position in the output buffer. This must not exceed
141 const uint8_t *in;
159 * multi-call decoding. This is ignored in single-call mode
162 * in practice), so other values for dict_max don't make sense.
163 * In the kernel, dictionary sizes of 64 KiB, 128 KiB, 256 KiB,
175 * a big dictionary are not a problem in single-call mode. It is enough that
177 * can be smaller than the dictionary size stored in the stream headers.
208 * Note that if an error occurs in single-call mode (return value is not
227 * In single-call mode, xz_dec_reset() is always called in the beginning of
228 * xz_dec_run(). Thus, explicit call to xz_dec_reset() is useful only in
241 * Standalone build (userspace build or in-kernel build for boot time use)
242 * needs a CRC32 implementation. For normal in-kernel use, kernel's own
264 # error Using CRC64 in the kernel has not been implemented.