Lines Matching refs:from
85 * between `out` and `from` is at least CHUNKCOPY_CHUNK_SIZE, which we rely on
88 * Aside from better memory bus utilisation, this means that short copies
95 const unsigned char FAR* from,
98 storechunk(out, loadchunk(from));
100 from += bump;
103 storechunk(out, loadchunk(from));
105 from += CHUNKCOPY_CHUNK_SIZE;
120 const unsigned char FAR* from,
125 const unsigned char FAR* Z_RESTRICT rfrom = from;
126 Assert((uintptr_t)out - (uintptr_t)from >= len,
128 Assert((uintptr_t)from - (uintptr_t)out >= len,
150 return chunkcopy_core(out, from, len);
161 * output from a single token; see inffast.c).
167 const unsigned char FAR* from = out - *dist;
169 storechunk(out, loadchunk(from));
354 const unsigned char FAR* Z_RESTRICT from,
356 Assert((uintptr_t)out - (uintptr_t)from >= len,
358 Assert((uintptr_t)from - (uintptr_t)out >= len,
360 return chunkcopy_core(out, from, len);
378 const unsigned char FAR* Z_RESTRICT from,
382 Assert((uintptr_t)out - (uintptr_t)from >= len,
384 Assert((uintptr_t)from - (uintptr_t)out >= len,
387 return chunkcopy_core_safe(out, from, len, limit);