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

123

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/debug/
H A Dfull_flush.c41 ret = lzma_code(&strm, size == 0 ? action : LZMA_RUN);
53 if ((action == LZMA_RUN && ret != LZMA_OK)
54 || (action != LZMA_RUN && ret != LZMA_STREAM_END)) {
H A Dsync_flush.c41 ret = lzma_code(&strm, size == 0 ? action : LZMA_RUN);
53 if ((action == LZMA_RUN && ret != LZMA_OK)
54 || (action != LZMA_RUN && ret != LZMA_STREAM_END)) {
H A Dknown_sizes.c101 if (lzma_code(&strm, LZMA_RUN) != LZMA_STREAM_END)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/tests/
H A Dtests.h64 lzma_action action = LZMA_RUN;
113 return coder_loop(strm, in, in_size, NULL, 0, expected_ret, LZMA_RUN);
121 LZMA_STREAM_END, LZMA_RUN);
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/debug/
H A Dfull_flush.c41 ret = lzma_code(&strm, size == 0 ? action : LZMA_RUN);
53 if ((action == LZMA_RUN && ret != LZMA_OK)
54 || (action != LZMA_RUN && ret != LZMA_STREAM_END)) {
H A Dsync_flush.c41 ret = lzma_code(&strm, size == 0 ? action : LZMA_RUN);
53 if ((action == LZMA_RUN && ret != LZMA_OK)
54 || (action != LZMA_RUN && ret != LZMA_STREAM_END)) {
H A Dknown_sizes.c101 if (lzma_code(&strm, LZMA_RUN) != LZMA_STREAM_END)
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/tests/
H A Dtests.h64 lzma_action action = LZMA_RUN;
113 return coder_loop(strm, in, in_size, NULL, 0, expected_ret, LZMA_RUN);
121 LZMA_STREAM_END, LZMA_RUN);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/api/lzma/
H A Dbase.h251 LZMA_RUN = 0, enumerator in enum:__anon19386
298 * with LZMA_RUN or finish the Stream with LZMA_FINISH.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/common/
H A Dstream_encoder.c111 return action == LZMA_RUN
151 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.c152 strm->internal->supported_actions[LZMA_RUN] = true;
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/api/lzma/
H A Dbase.h251 LZMA_RUN = 0, enumerator in enum:__anon20380
298 * with LZMA_RUN or finish the Stream with LZMA_FINISH.
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/common/
H A Dstream_encoder.c111 return action == LZMA_RUN
151 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;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/doc/examples/
H A Dxz_pipe_comp.c89 action = in_finished ? LZMA_FINISH : LZMA_RUN;
H A Dxz_pipe_decomp.c77 action = in_finished ? LZMA_FINISH : LZMA_RUN;
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/doc/examples/
H A Dxz_pipe_comp.c89 action = in_finished ? LZMA_FINISH : LZMA_RUN;
H A Dxz_pipe_decomp.c77 action = in_finished ? LZMA_FINISH : LZMA_RUN;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/lz/
H A Dlz_encoder.c98 ret = action != LZMA_RUN && *in_pos == in_size
158 && (*in_pos < in_size || action != LZMA_RUN)) {
160 if (coder->mf.action == LZMA_RUN && coder->mf.read_pos
169 // Setting this to LZMA_RUN for cases when we are
172 coder->mf.action = LZMA_RUN;
435 mf->action = LZMA_RUN;
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/lz/
H A Dlz_encoder.c98 ret = action != LZMA_RUN && *in_pos == in_size
158 && (*in_pos < in_size || action != LZMA_RUN)) {
160 if (coder->mf.action == LZMA_RUN && coder->mf.read_pos
169 // Setting this to LZMA_RUN for cases when we are
172 coder->mf.action = LZMA_RUN;
435 mf->action = LZMA_RUN;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/delta/
H A Ddelta_encoder.c69 ret = action != LZMA_RUN && *in_pos == in_size
/netgear-R7000-V1.0.7.12_1.2.5/src/router/squashfs-4.2/
H A Dlzma_xz_wrapper.c124 res = lzma_code(&strm, LZMA_RUN);

Completed in 113 milliseconds

123