Searched refs:LZMA_RUN (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-11.0-release/usr.bin/gzip/
H A Dunxz.c46 lzma_action action = LZMA_RUN;
67 if ((ret = lzma_code(&strm, LZMA_RUN)) != LZMA_OK)
/freebsd-11.0-release/contrib/xz/src/liblzma/common/
H A Dstream_encoder.c110 return action == LZMA_RUN
150 LZMA_RUN,
182 out, out_pos, out_size, LZMA_RUN);
325 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dindex_encoder.c212 strm->internal->supported_actions[LZMA_RUN] = true;
240 out, out_pos, out_size, LZMA_RUN);
H A Dalone_encoder.c153 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dfilter_decoder.c153 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dindex_decoder.c294 strm->internal->supported_actions[LZMA_RUN] = true;
321 NULL, NULL, 0, LZMA_RUN);
H A Dstream_encoder_mt.c264 ? LZMA_FINISH : LZMA_RUN;
273 action = LZMA_RUN;
556 || (coder->thr != NULL && action != LZMA_RUN)) {
576 || (*in_pos == in_size && action != LZMA_RUN);
741 // LZMA_RUN: More data is probably coming
744 if (action == LZMA_RUN)
748 // LZMA_RUN but tell the caller that the
807 out, out_pos, out_size, LZMA_RUN);
1072 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dalone_decoder.c234 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dauto_decoder.c182 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dblock_encoder.c213 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dblock_decoder.c248 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dfilter_encoder.c213 strm->internal->supported_actions[LZMA_RUN] = true;
H A Dcommon.c221 case LZMA_RUN:
H A Dstream_decoder.c458 strm->internal->supported_actions[LZMA_RUN] = true;
/freebsd-11.0-release/contrib/xz/src/liblzma/api/lzma/
H A Dbase.h251 LZMA_RUN = 0, enumerator in enum:__anon5823
298 * with LZMA_RUN or finish the Stream with LZMA_FINISH.
/freebsd-11.0-release/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c101 ret = action != LZMA_RUN && *in_pos == in_size
167 && (*in_pos < in_size || action != LZMA_RUN)) {
169 if (coder->mf.action == LZMA_RUN && coder->mf.read_pos
178 // Setting this to LZMA_RUN for cases when we are
181 coder->mf.action = LZMA_RUN;
455 mf->action = LZMA_RUN;
H A Dlz_encoder_mf.c197 assert(mf->action != LZMA_RUN); \
/freebsd-11.0-release/contrib/xz/src/xz/
H A Dcoder.c532 ret = lzma_code(&strm, LZMA_RUN);
607 lzma_action action = pair->src_eof ? LZMA_FINISH : LZMA_RUN;
663 if (strm.avail_in == 0 && action == LZMA_RUN) {
683 if (action == LZMA_RUN && flush_needed)
730 action = LZMA_RUN;
/freebsd-11.0-release/contrib/xz/src/liblzma/delta/
H A Ddelta_encoder.c69 ret = action != LZMA_RUN && *in_pos == in_size
/freebsd-11.0-release/contrib/xz/src/xzdec/
H A Dxzdec.c171 lzma_action action = LZMA_RUN;
/freebsd-11.0-release/usr.bin/grep/
H A Dfile.c310 laction = LZMA_RUN;
/freebsd-11.0-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder.c273 if (mf->action == LZMA_RUN)
347 if (mf->action == LZMA_RUN)
H A Dlzma2_encoder.c150 return mf->action == LZMA_RUN
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_xz.c510 finishing ? LZMA_FINISH : LZMA_RUN );
H A Darchive_read_support_filter_xz.c712 (state->stream.avail_in == 0)? LZMA_FINISH: LZMA_RUN);

Completed in 208 milliseconds

12