Searched refs:unfiltered (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/simple/
H A Dsimple_coder.c106 // If there is more output space left than there is unfiltered data
140 const size_t unfiltered = size - filtered; local
141 assert(unfiltered <= coder->allocated / 2);
146 coder->size = unfiltered;
153 } else if (unfiltered > 0) {
154 // There is unfiltered data left in out[]. Copy it to
156 *out_pos -= unfiltered;
157 memcpy(coder->buffer, out + *out_pos, unfiltered);
170 // unfiltered data will be left to coder->buffer[].
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/simple/
H A Dsimple_coder.c106 // If there is more output space left than there is unfiltered data
140 const size_t unfiltered = size - filtered; local
141 assert(unfiltered <= coder->allocated / 2);
146 coder->size = unfiltered;
153 } else if (unfiltered > 0) {
154 // There is unfiltered data left in out[]. Copy it to
156 *out_pos -= unfiltered;
157 memcpy(coder->buffer, out + *out_pos, unfiltered);
170 // unfiltered data will be left to coder->buffer[].

Completed in 63 milliseconds